Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosQ96 committed Sep 23, 2023
1 parent 6fb85e7 commit 4070b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const findObjectByClosestTimestamp = (
) => {
if (objects.length === 0) return null;

let dateLabelObjects = objects.filter(item => item.type !== 'DATE_LABEL');
const dateLabelObjects = objects.filter(item => item.type !== 'DATE_LABEL');

let closestObj = dateLabelObjects[0];
let closestTimestamp = closestObj.creationTimestamp;
Expand Down

0 comments on commit 4070b19

Please sign in to comment.