Skip to content

Commit

Permalink
remove focus listener from map.svg.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Feb 27, 2025
1 parent d4e7a94 commit 00ad07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_components/Map.svg.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@
role="tooltip"
>
{#each features || $data.features as feature}
<!-- svelte-ignore a11y_mouse_events_have_key_events -->
<path
class="feature-path"
fill={fill || $zGet(feature.properties)}
{stroke}
stroke-width={strokeWidth}
d={geoPathFn(feature)}
on:mouseover={e => dispatch('mousemove', { e, props: feature.properties })}
on:focus={e => dispatch('mousemove', { e, props: feature.properties })}
on:mousemove={handleMousemove(feature)}
role="tooltip"
></path>
Expand Down

0 comments on commit 00ad07a

Please sign in to comment.