Skip to content

Commit

Permalink
chore: fix eslint warning (#1615)
Browse files Browse the repository at this point in the history
  • Loading branch information
kswenson authored Nov 13, 2024
1 parent b76a832 commit f93cd5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const semiAggregateFunctions = {
const caseGroupId = scope.getCaseGroupId()
const cacheKey = `next(${args.toString()})-${caseGroupId}`
const [ expression, defaultValue, filter ] = args
const cachedData = scope.getCached(cacheKey) as ICachedData | undefined
const cachedData = scope.getCached<ICachedData>(cacheKey)

let result
let casePointer = scope.getCasePointer()
Expand Down

0 comments on commit f93cd5a

Please sign in to comment.