Skip to content

Commit

Permalink
Fix Client Env Var Usage
Browse files Browse the repository at this point in the history
  • Loading branch information
timoclsn committed Mar 7, 2024
1 parent 700037c commit 823ec08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/website/src/lib/tracking.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const { NEXT_PUBLIC_VERCEL_ENV, NODE_ENV } = process.env;
const NEXT_PUBLIC_VERCEL_ENV = process.env.NEXT_PUBLIC_VERCEL_ENV;
const NODE_ENV = process.env.NODE_ENV;

interface TrackingEvents {
"Carousel item selected": {
Expand Down

0 comments on commit 823ec08

Please sign in to comment.