From 429b50c40341a6a9d90ff16f5d2ad4ce729e4fcb Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 18 Jan 2026 10:12:25 +0000 Subject: [PATCH] fix: remove toast descriptions for better contrast --- src/components/ConnectWalletDialog.tsx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/components/ConnectWalletDialog.tsx b/src/components/ConnectWalletDialog.tsx index cce8910..7f05fb5 100644 --- a/src/components/ConnectWalletDialog.tsx +++ b/src/components/ConnectWalletDialog.tsx @@ -99,21 +99,14 @@ export default function ConnectWalletDialog({ }); // Show success toast - toast.success("Wallet Connected", { - description: info.alias - ? `Connected to ${info.alias}` - : "Successfully connected to wallet", - }); + toast.success("Wallet Connected"); // Close dialog onOpenChange(false); } catch (err) { console.error("Wallet connection error:", err); setError(err instanceof Error ? err.message : "Failed to connect wallet"); - toast.error("Connection Failed", { - description: - err instanceof Error ? err.message : "Failed to connect wallet", - }); + toast.error("Failed to connect wallet"); } finally { setLoading(false); }