Skip to content

Commit

Permalink
fix: remove default value for NEXT_PUBLIC_POSTHOG_ID in environment c…
Browse files Browse the repository at this point in the history
…onfiguration
  • Loading branch information
luis-herasme committed Dec 11, 2024
1 parent b1ff710 commit 7cc8a88
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/web/src/env.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ export const env = createEnv({
.default("https://etherscan.io/"),
NEXT_PUBLIC_NETWORK_NAME: networkSchema.default("mainnet"),
NEXT_PUBLIC_SENTRY_DSN_WEB: z.string().url().optional(),
NEXT_PUBLIC_POSTHOG_ID: z
.string()
.optional()
.default("phc_n7WONIedZmpeWUlvgQq2KW3p59g6Au8JDTRVciqpcWl"),
NEXT_PUBLIC_POSTHOG_ID: z.string().optional(),
NEXT_PUBLIC_POSTHOG_HOST: z.string().default("https://us.i.posthog.com"),
NEXT_PUBLIC_SUPPORTED_NETWORKS: z
.string()
Expand Down

0 comments on commit 7cc8a88

Please sign in to comment.