Skip to content

Commit

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

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

0 comments on commit c2011f4

Please sign in to comment.