Skip to content

Commit

Permalink
fix(web): missing coma
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGabi committed Mar 13, 2024
1 parent e94f31b commit 745cd21
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/src/env.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ export const env = createEnv({
client: {
NEXT_PUBLIC_VERCEL_ANALYTICS_ENABLED: booleanSchema.default("false"),
NEXT_PUBLIC_NETWORK_NAME: networkSchema.default("mainnet"),
NEXT_PUBLIC_SUPPORTED_NETWORKS: z.string().default('[{"label":"Mainnet","href":"https://blobscan.com/"},{"label":"Holesky","href":"https://holesky.blobscan.com/"},{"label":"Sepolia","href":"https://sepolia.blobscan.com/"}]')
NEXT_PUBLIC_SUPPORTED_NETWORKS: z
.string()
.default(
'[{"label":"Mainnet","href":"https://blobscan.com/"},{"label":"Holesky","href":"https://holesky.blobscan.com/"},{"label":"Sepolia","href":"https://sepolia.blobscan.com/"}]'
),
NEXT_PUBLIC_EXPLORER_BASE_URL: z
.string()
.url()
Expand Down

0 comments on commit 745cd21

Please sign in to comment.