Browse Source

Set default onboarding to true

pull/1001/head
Jorrin 1 year ago
parent
commit
8ccca76573
  1. 2
      src/setup/config.ts

2
src/setup/config.ts

@ -108,7 +108,7 @@ export function conf(): RuntimeConfig { @@ -108,7 +108,7 @@ export function conf(): RuntimeConfig {
.map((v) => v.trim())
.filter((v) => v.length > 0),
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"),
DISALLOWED_IDS: getKey("DISALLOWED_IDS", "")
.split(",")

Loading…
Cancel
Save