From 6ed41c0e826b46e911929e7eaf8f1c7e32ba4776 Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Fri, 13 Feb 2026 11:31:16 -0500 Subject: [PATCH] cleanup --- frontend/src/components/stickies.tsx | 33 ++++++++++------------------ 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/frontend/src/components/stickies.tsx b/frontend/src/components/stickies.tsx index 958f038..a48fc91 100644 --- a/frontend/src/components/stickies.tsx +++ b/frontend/src/components/stickies.tsx @@ -21,14 +21,12 @@ const Stickies = () => { return map; }; - if (clusters) { - const stickyMap = buildStickyMap(); + const stickyMap = buildStickyMap(); - return ( -
-
-
+ return ( +
+
- ); - } - - return ( -
-
-
-
- {stickies?.map((sticky) => ( - - ))} -
+ ) : ( +
+ {stickies?.map((sticky) => ( + + ))} +
+ )}
); };