Skip to content

Commit

Permalink
chore: any => unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
haakonflatval-cognite committed Nov 18, 2024
1 parent 35617be commit b6ba561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react-components/src/utilities/queryKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const queryKeys = {
// ASSETS
assetsById: (ids: IdEither[]) => [...assets, ids] as const,
// Points of interest
poiCommentsById: (id: any) => [...pois, id] as const,
poiCommentsById: (id: unknown) => [...pois, id] as const,
// TIMESERIES
timeseriesById: (ids: IdEither[]) => [...timeseries, ids] as const,
timeseriesLatestDatapoint: () => [...timeseries, 'latest-datapoints'] as const,
Expand Down

0 comments on commit b6ba561

Please sign in to comment.