Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Solve PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrik-Klijnsma-Work committed May 30, 2022
1 parent f696df7 commit 86a2f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/utils/get-last-insertion-date-of-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function getLastInsertionDateOfPage(
return pageMetrics.reduce((lastDate, metricProperty) => {
const metricOrUnixDate = get(data, metricProperty);

let metricDate = 0;
let metricDate: number;

if (typeof metricOrUnixDate === 'number') {
metricDate = metricOrUnixDate;
Expand Down

0 comments on commit 86a2f3a

Please sign in to comment.