Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wkramer committed Sep 18, 2024
1 parent 67c4e02 commit a43b8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/useTimeSeries/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export function useTimeSeries(
const timeSeries = piSeries.timeSeries[index]
const resourceId = isGridTimeSEries
? `${request.key}[${index}]`
: request.key ?? ''
: (request.key ?? '')
updatedSeriesIds.push(resourceId)
const resource = new SeriesUrlRequest('fews-pi', 'dummyUrl')
const _series = new Series(resource)
Expand Down

0 comments on commit a43b8af

Please sign in to comment.