From afe1ca43cca9710f691be9e545b476cde7fce33d Mon Sep 17 00:00:00 2001 From: gbuomprisco Date: Tue, 19 Nov 2024 11:32:46 +0800 Subject: [PATCH] Fix NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS in Zod error description --- apps/web/config/feature-flags.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/config/feature-flags.config.ts b/apps/web/config/feature-flags.config.ts index 75c14f805..a99a1cf1a 100644 --- a/apps/web/config/feature-flags.config.ts +++ b/apps/web/config/feature-flags.config.ts @@ -20,7 +20,7 @@ const FeatureFlagsSchema = z.object({ enableTeamAccounts: z.boolean({ description: 'Enable team accounts.', required_error: - 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_DELETION', + 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS', }), enableTeamCreation: z.boolean({ description: 'Enable team creation.',