Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
timngyn committed May 4, 2024
1 parent 0bea048 commit 082cd1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/generate-sitemap.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const SITEMAP_DOMAIN = process.env.SITEMAP_DOMAIN
// Path of the Next.js static HTML build output
const ROOT_PATH = './client/www/next-build';

const formatDate = (date) => `${date.toISOString()}`;
const formatDate = (date) => date.toISOString();
const getPriority = () => 0.5;

const PLATFORMS = [
Expand Down

0 comments on commit 082cd1c

Please sign in to comment.