Skip to content

Commit

Permalink
Fix some typing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Nov 6, 2024
1 parent 0e83884 commit 7223c69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/PortrayalOption/GriddingSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ import type { PortrayalSettingsProps } from './common';
import {
type ChoroplethLegend,
type ClassificationParameters,
GeoJSONFeatureCollection,
type GeoJSONFeatureCollection,
GridCellShape,
type GriddedLayerParameters,
type GridParameters,
LayerDescription,
type LayerDescription,
type LegendTextElement,
LegendType,
Orientation,
Expand Down Expand Up @@ -206,7 +206,7 @@ export default function GriddingSettings(props: PortrayalSettingsProps): JSX.Ele
.find((l) => l.id === props.layerId)!; // eslint-disable-line solid/reactivity

// The bbox of the layer
const bboxLayer = bbox(layerDescription.data);
const bboxLayer = bbox(layerDescription.data as any);

// The fields of interest on the selected layer
const targetFields = layerDescription
Expand Down

0 comments on commit 7223c69

Please sign in to comment.