Skip to content

Commit

Permalink
Removed idSuffix
Browse files Browse the repository at this point in the history
  • Loading branch information
nerik committed Sep 18, 2023
1 parent 70d0782 commit aa1d0c4
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export interface RasterTimeseriesProps {
bounds?: number[];
onStatusChange?: (result: { status: ActionStatus; id: string }) => void;
isHidden?: boolean;
idSuffix?: string;
isPositionSet?: boolean;
}

Expand All @@ -71,7 +70,6 @@ export function RasterTimeseries(props: RasterTimeseriesProps) {
bounds,
onStatusChange,
isHidden,
idSuffix = '',
isPositionSet
} = props;

Expand All @@ -82,7 +80,7 @@ export function RasterTimeseries(props: RasterTimeseriesProps) {
const { updateStyle } = useMapStyle();

const minZoom = zoomExtent?.[0] ?? 0;
const generatorId = 'raster-timeseries' + idSuffix;
const generatorId = 'raster-timeseries' + id;

// Status tracking.
// A raster timeseries layer has a base layer and may have markers.
Expand Down

0 comments on commit aa1d0c4

Please sign in to comment.