We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c5371 commit acda1eaCopy full SHA for acda1ea
utilities/env.ts
@@ -19,8 +19,8 @@ const schema = z.object( {
19
SENTRY_AUTH_TOKEN: z.string().min( 1 ),
20
21
NEXT_PUBLIC_RECAPTCHA_ENABLED: z.enum( [ "true", "false" ] ),
22
- NEXT_PUBLIC_RECAPTCHA_PUBLIC_KEY: z.string().length( 40 ).startsWith( "6Ld" ),
23
- RECAPTCHA_SECRET_KEY: z.string().length( 40 ).startsWith( "6Ld" ),
+ NEXT_PUBLIC_RECAPTCHA_PUBLIC_KEY: z.string().length( 40 ).startsWith( "6L" ),
+ RECAPTCHA_SECRET_KEY: z.string().length( 40 ).startsWith( "6L" ),
24
25
NEXT_PUBLIC_ANALYTICS_ENABLED: z.enum( [ "true", "false" ] ),
26
NEXT_PUBLIC_ANALYTICS_TAG: z.string().length( 12 ).startsWith( "G-" ),
0 commit comments