Set default onboarding to true

This commit is contained in:
Jorrin 2024-03-11 23:48:23 +01:00
parent fc76a84bc8
commit 8ccca76573
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ export function conf(): RuntimeConfig {
.map((v) => v.trim()) .map((v) => v.trim())
.filter((v) => v.length > 0), .filter((v) => v.length > 0),
NORMAL_ROUTER: getKey("NORMAL_ROUTER", "false") === "true", NORMAL_ROUTER: getKey("NORMAL_ROUTER", "false") === "true",
HAS_ONBOARDING: getKey("HAS_ONBOARDING", "false") === "true", HAS_ONBOARDING: getKey("HAS_ONBOARDING", "true") === "true",
TURNSTILE_KEY: getKey("TURNSTILE_KEY"), TURNSTILE_KEY: getKey("TURNSTILE_KEY"),
DISALLOWED_IDS: getKey("DISALLOWED_IDS", "") DISALLOWED_IDS: getKey("DISALLOWED_IDS", "")
.split(",") .split(",")