Skip to content

Commit a33f385

Browse files
committed
improvement(settings): drop the Privacy row's description
The row reads Privacy settings with a Manage chip, and the sub-view it opens titles and describes itself — the sentence beneath it restated that before the user had asked for it. The wrapper it shared with the row goes too, now that the row is the section's only child.
1 parent d909889 commit a33f385

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

  • apps/sim/app/workspace/[workspaceId]/settings/components/general

apps/sim/app/workspace/[workspaceId]/settings/components/general/general.tsx

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -555,16 +555,9 @@ export function General() {
555555
</SettingsSection>
556556

557557
<SettingsSection label='Privacy'>
558-
<div className='flex flex-col gap-3'>
559-
<div className='flex items-center justify-between'>
560-
<Label>Privacy settings</Label>
561-
<Chip onClick={() => setView('privacy')}>Manage</Chip>
562-
</div>
563-
<p className='text-[var(--text-muted)] text-small'>
564-
{isHosted
565-
? 'Choose what Sim may collect about how you use it — anonymous telemetry, and which cookies this browser allows.'
566-
: 'Choose what Sim may collect about how you use it.'}
567-
</p>
558+
<div className='flex items-center justify-between'>
559+
<Label>Privacy settings</Label>
560+
<Chip onClick={() => setView('privacy')}>Manage</Chip>
568561
</div>
569562
</SettingsSection>
570563

0 commit comments

Comments
 (0)