diff --git a/client/components/SupabaseStatus.tsx b/client/components/SupabaseStatus.tsx index 59ceb765..99f8ebd5 100644 --- a/client/components/SupabaseStatus.tsx +++ b/client/components/SupabaseStatus.tsx @@ -1,54 +1,4 @@ -import React from "react"; -import { isSupabaseConfigured } from "@/lib/supabase"; -import { Alert, AlertDescription } from "@/components/ui/alert"; -import { Button } from "@/components/ui/button"; -import { Database, ExternalLink, Info } from "lucide-react"; - +// SupabaseStatus component removed - running in production mode with Supabase configured export default function SupabaseStatus() { - // Only show if Supabase is not configured (demo mode) - if (isSupabaseConfigured) { - return null; - } - - return ( -
- - - -
- Demo Mode: Full functionality with simulated data. - All features are available for testing! -
-
- - -
-
-
-
- ); + return null; }