Skip to content

Commit 653ee6e

Browse files
committed
Update copy
1 parent 684432d commit 653ee6e

File tree

1 file changed

+12
-7
lines changed
  • packages/ui/src/components/devPrompts/EnableOrganizationsPrompt

1 file changed

+12
-7
lines changed

packages/ui/src/components/devPrompts/EnableOrganizationsPrompt/index.tsx

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -185,26 +185,31 @@ const EnableOrganizationsPromptInternal = ({
185185
direction='col'
186186
>
187187
<RadioGroup
188-
value={allowPersonalAccount ? 'allow' : 'require'}
189-
onChange={value => setAllowPersonalAccount(value === 'allow')}
188+
value={allowPersonalAccount ? 'optional' : 'required'}
189+
onChange={value => setAllowPersonalAccount(value === 'optional')}
190190
labelledBy={radioGroupLabelId}
191191
>
192192
<RadioGroupItem
193-
value='require'
193+
value='required'
194194
label={
195195
<Flex
196196
wrap='wrap'
197197
sx={t => ({ columnGap: t.sizes.$2, rowGap: t.sizes.$1 })}
198198
>
199-
<span>Require organization membership</span>
199+
<span>Membership required</span>
200200
<PromptBadge>Standard</PromptBadge>
201201
</Flex>
202202
}
203-
description='Users need to belong to at least one organization.'
203+
description={
204+
<>
205+
<span className='block'>Users need to belong to at least one organization.</span>
206+
<span>Common for most B2B SaaS applications</span>
207+
</>
208+
}
204209
/>
205210
<RadioGroupItem
206-
value='allow'
207-
label='Allow personal accounts'
211+
value='optional'
212+
label='Membership optional'
208213
description='Users can work outside of an organization with a personal account'
209214
/>
210215
</RadioGroup>

0 commit comments

Comments
 (0)