Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Nov 22, 2023
1 parent 28ac809 commit d4547c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next-sitemap.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = {
return posts
.map((p) => {
if (!p.slug) return null;
if (p.slug.statrtsWith("how-to-stake")) return `/staking/${p.slug}`;
if (p.slug.startsWith("how-to-stake")) return `/staking/${p.slug}`;

return `/blog/${p.slug}`;
})
Expand Down

0 comments on commit d4547c7

Please sign in to comment.