From dc34cb6fa032fbe2e6d9d75350025c92c70e4348 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 6 Aug 2025 02:14:17 +0000 Subject: [PATCH] Remove SupabaseStatus component since production mode is active cgen-022401ce8f864c1fbc53313045b068c7 --- client/components/SupabaseStatus.tsx | 54 ++-------------------------- 1 file changed, 2 insertions(+), 52 deletions(-) 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; }