File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/auth-methods Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,16 +63,16 @@ export default function PageClient() {
63
63
</ SettingCard >
64
64
< SettingCard title = "Settings" >
65
65
< SettingSwitch
66
- label = "Allow everyone to create accounts "
67
- checked = { project . config . signUpEnabled }
66
+ label = "Disable sign ups, only allow sign ins from existing users "
67
+ checked = { ! project . config . signUpEnabled }
68
68
onCheckedChange = { async ( checked ) => {
69
69
await project . update ( {
70
70
config : {
71
- signUpEnabled : checked ,
71
+ signUpEnabled : ! checked ,
72
72
} ,
73
73
} ) ;
74
74
} }
75
- hint = "When disabled, only users with an existing account can sign in. You can still create new accounts manually on the dashboard."
75
+ hint = "Admins (like you) can still create new accounts manually by clicking 'Create User' on the Users page of the dashboard."
76
76
/>
77
77
</ SettingCard >
78
78
</ PageLayout >
You can’t perform that action at this time.
0 commit comments