Skip to content

Commit

Permalink
Fix broken area links
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Aug 21, 2024
1 parent 8783c10 commit 154f002
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/community/[area]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
const routes = [
{ name: 'Communities', url: '/communities' },
{ name, url: `/communities/${id}` }
{ name, url: `/community/${id}` }
];
</script>

Expand Down
2 changes: 1 addition & 1 deletion src/routes/country/[area]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
const routes = [
{ name: 'Countries', url: '/countries' },
{ name, url: `/countries/${id}` }
{ name, url: `/country/${id}` }
];
</script>

Expand Down

0 comments on commit 154f002

Please sign in to comment.