Skip to content

Commit

Permalink
AUTH_OIDC_TIMEOUT make default a string (#2041)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeDemal committed May 8, 2024
1 parent 0a08b8f commit 042a381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const env = createEnv({
AUTH_OIDC_OWNER_GROUP: z.string().default('admin'),
AUTH_OIDC_AUTO_LOGIN: zodParsedBoolean(),
AUTH_OIDC_SCOPE_OVERWRITE: z.string().default('openid email profile groups'),
AUTH_OIDC_TIMEOUT: numberSchema.default(3500),
AUTH_OIDC_TIMEOUT: numberSchema.default('3500'),
}
: {}),
},
Expand Down

0 comments on commit 042a381

Please sign in to comment.