diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-20 13:44:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 13:44:52 -0800 |
commit | 39a5a1e3111adf469f5e23ee9a0462416f1c27ec (patch) | |
tree | 2d4cf32193e75b62a3f870294b71b15da37fa624 /src | |
parent | 238ff58db9355c630c9284bc488e8adf044af430 (diff) | |
download | voidsky-39a5a1e3111adf469f5e23ee9a0462416f1c27ec.tar.zst |
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/create/state.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/auth/create/state.ts b/src/view/com/auth/create/state.ts index 4df82f8fc..a77d2a44f 100644 --- a/src/view/com/auth/create/state.ts +++ b/src/view/com/auth/create/state.ts @@ -144,7 +144,7 @@ export async function submit({ } export function is13(state: CreateAccountState) { - return getAge(state.birthDate) >= 18 + return getAge(state.birthDate) >= 13 } export function is18(state: CreateAccountState) { |