Skip to content

Commit

Permalink
fix(builtins): fix linter error
Browse files Browse the repository at this point in the history
Signed-off-by: manushak <[email protected]>
  • Loading branch information
manushak committed Sep 17, 2024
1 parent 7618d8b commit f381e56
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/if-run/builtins/time-sync/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,10 @@ export const TimeSync = (

acc[metric] =
aggregationParams.time === 'sum'
? convertPerInterval(evaluatedInput[metric], evaluatedInput['duration'])
? convertPerInterval(
evaluatedInput[metric],
evaluatedInput['duration']
)
: evaluatedInput[metric];

return acc;
Expand Down

0 comments on commit f381e56

Please sign in to comment.