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) => ( + + ))} +
+ )}
); };