Skip to content

Commit

Permalink
Removed sensitive information
Browse files Browse the repository at this point in the history
  • Loading branch information
hlokomani committed Jun 2, 2024
1 parent 5874169 commit de4cc4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/lib/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { createClient } from "@supabase/supabase-js";

const SUPABASE_URL = 'https://plvofqwscloxamqxcxhz.supabase.co';
const SUPABASE_ANON_KEY = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InBsdm9mcXdzY2xveGFtcXhjeGh6Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTY4MjI1NDAsImV4cCI6MjAzMjM5ODU0MH0.ftgWznPWGedNu8elAiZiQFqP6Az1zD6YjaJXcbm41e8';
const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL as string;
const SUPABASE_ANON_KEY = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY as string;

export const supabase = createClient(SUPABASE_URL, SUPABASE_ANON_KEY);

0 comments on commit de4cc4f

Please sign in to comment.