Skip to content

Commit

Permalink
fix: Type
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbrowne committed Sep 7, 2024
1 parent 8de56fc commit 0d7560d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/Mutations/Minimap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ const Minimap = ({
data={geoDataMinimap.country}
/>
<ScatterplotLayer
id="window"
id="location"
stroked
filled
getRadius={() => 10000}
getPosition={(d) => d.coordinates}
getPosition={(d: { coordinates: [number, number] }) => d.coordinates}
getFillColor={[0, 0, 255, 50]}
getLineColor={[0, 0, 0]}
getLineWidth={10}
Expand Down

0 comments on commit 0d7560d

Please sign in to comment.