Skip to content

Commit

Permalink
Merge pull request #157 from teambtcmap/fix-broken-area-links
Browse files Browse the repository at this point in the history
Fix broken area links
  • Loading branch information
secondl1ght authored Aug 21, 2024
2 parents 8783c10 + 154f002 commit c3e9ef7
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 c3e9ef7

Please sign in to comment.