File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed
packages/ui/src/components/devPrompts/EnableOrganizationsPrompt Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments