Skip to content

Commit

Permalink
Remove seconds from time stamp
Browse files Browse the repository at this point in the history
  • Loading branch information
kordwarshuis committed Jul 13, 2024
1 parent 8716774 commit 6969907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion search-index-typesense/sortAndStyleScrapedIndex.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function sortLinesInFile(fileName) {
const finalContent = `<ol>\n${wrappedContent}\n</ol>`;

// Get the current time
const currentTime = format(new Date(), 'dd MMMM yyyy HH:mm:ss');
const currentTime = format(new Date(), 'dd MMMM yyyy HH:mm');

// Add a header
const header = `
Expand Down

0 comments on commit 6969907

Please sign in to comment.