From 6a79bc6e5bf312fb37367b3adb61132179ae0386 Mon Sep 17 00:00:00 2001 From: KevIsDev Date: Thu, 20 Mar 2025 12:32:10 +0000 Subject: [PATCH] fix: supabase button color to default --- app/components/chat/SupabaseConnection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/chat/SupabaseConnection.tsx b/app/components/chat/SupabaseConnection.tsx index 6b2e34a0..7844fab6 100644 --- a/app/components/chat/SupabaseConnection.tsx +++ b/app/components/chat/SupabaseConnection.tsx @@ -315,7 +315,7 @@ function Button({ active = false, disabled = false, children, onClick, className { 'bg-bolt-elements-item-backgroundDefault hover:bg-bolt-elements-item-backgroundActive text-bolt-elements-textTertiary hover:text-bolt-elements-textPrimary': !active, - 'bg-bolt-elements-item-backgroundAccent text-bolt-elements-item-contentAccent': active && !disabled, + 'bg-bolt-elements-item-backgroundDefault text-bolt-elements-item-contentAccent': active && !disabled, 'bg-bolt-elements-item-backgroundDefault text-alpha-gray-20 dark:text-alpha-white-20 cursor-not-allowed': disabled, },