From 3b812bd8c7bd5967c2837045393294e8f2a82d68 Mon Sep 17 00:00:00 2001 From: Minit Date: Fri, 3 Apr 2026 12:43:22 +0530 Subject: [PATCH 1/2] fix(ui): replace dice emoji with SVG icon in Surprise me button and modal Removes the only emoji from the dashboard UI, aligning the Surprise me button and Rediscovered modal header with the rest of the icon-based visual language. Co-Authored-By: Claude Sonnet 4.6 --- client/src/components/DashboardClient.tsx | 26 +++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/client/src/components/DashboardClient.tsx b/client/src/components/DashboardClient.tsx index a6f157d..3c2eacc 100644 --- a/client/src/components/DashboardClient.tsx +++ b/client/src/components/DashboardClient.tsx @@ -374,7 +374,19 @@ export default function DashboardClient({ aria-label="Show a random saved bookmark" className="text-xs px-3 py-1.5 rounded-full border border-[var(--border)] bg-[var(--surface)] text-[var(--text-muted)] hover:border-[var(--accent)] hover:text-[var(--accent)] disabled:opacity-40 transition-all duration-100 inline-flex items-center gap-1.5" > - {surpriseLoading ? "…" : "🎲 Surprise me"} + {surpriseLoading ? "…" : ( + <> + + Surprise me + + )} )} @@ -804,7 +816,17 @@ export default function DashboardClient({ onClick={(e) => e.stopPropagation()} >
- 🎲 Rediscovered + + + Rediscovered +