Skip to content

Commit

Permalink
[865] Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
4upz committed Aug 1, 2022
1 parent f3c9d4d commit 5ef6e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/Cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ export default function cache(): any {
* and the missing dates used for the request
*/
const getEstimatesForMissingDates = async (
getCostAndEstimates: unknown,
getCostAndEstimates: any,
request: EstimationRequest,
cachedEstimates?: EstimationResult[] = [],
cachedEstimates: EstimationResult[] = [],
): Promise<[EstimationResult[], Moment[]]> => {
const missingDates = getMissingDates(cachedEstimates, request)
const missingEstimates = getMissingDataRequests(missingDates, request).map(
Expand Down

0 comments on commit 5ef6e77

Please sign in to comment.