diff --git a/src/components/panel/MessageComposer.tsx b/src/components/panel/MessageComposer.tsx index a0f8fef..9e50e18 100644 --- a/src/components/panel/MessageComposer.tsx +++ b/src/components/panel/MessageComposer.tsx @@ -1,4 +1,3 @@ - import { useState } from "react"; import { Send } from "lucide-react"; import { Button } from "@/components/ui/button"; @@ -9,7 +8,7 @@ import { createClient } from "@supabase/supabase-js"; // Initialize Supabase client with proper error handling const supabaseUrl = "https://ikmbnngahzcellthaysf.supabase.co"; -const supabaseAnonKey = "YOUR_ANON_KEY_HERE"; // Replace this with your actual anon key +const supabaseAnonKey = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImlrbWJubmdhaHpjZWxsdGhheXNmIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDA1ODY5NjUsImV4cCI6MjA1NjE2Mjk2NX0.puDSeLAaTirOPyj6ndF2Mzzu8CKxlwJsoFP6gK8cWuA"; if (!supabaseUrl || !supabaseAnonKey) { throw new Error('Supabase URL and Anon Key are required');