Skip to content

Commit

Permalink
fix: trying to fix google auth error in production
Browse files Browse the repository at this point in the history
  • Loading branch information
NoorFatima01 committed May 5, 2024
1 parent 7fd6231 commit 56a2cd0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/constant/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ export const showLogger = isLocal
// Supabase
export const SUPABASE_ANON_KEY =
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY ?? 'sth';
export const SUPABASE_URL = isProd
? process.env.NEXT_PUBLIC_SUPABASE_PROD_URL
: process.env.NEXT_PUBLIC_SUPABASE_URL;
export const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL ?? 'sth';

//Pusher
export const PUSHER_KEY = process.env.NEXT_PUBLIC_PUSHER_KEY ?? 'sth';
Expand Down

0 comments on commit 56a2cd0

Please sign in to comment.