From d3eed9bbf8e9bbe8cd6af3e263cf942db3bb8f25 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Mon, 8 Dec 2025 16:57:38 -0500 Subject: [PATCH] Change icon from coffee logo to brown dot --- src/components/Map.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/Map.tsx b/src/components/Map.tsx index 5a77205..608f5b5 100644 --- a/src/components/Map.tsx +++ b/src/components/Map.tsx @@ -121,12 +121,10 @@ const Map = ({ shops, onShopSelect, selectedShop, isDiscoveryOpen }: MapProps) = const createCustomIcon = () => { return new L.DivIcon({ className: 'custom-icon', - html: `
- -
`, - iconSize: [32, 32], - iconAnchor: [16, 32], - popupAnchor: [0, -32], + html: `
`, + iconSize: [16, 16], + iconAnchor: [8, 8], + popupAnchor: [0, -10], }); };