Skip to content

Commit

Permalink
fix international char comm page bug
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght committed Feb 27, 2024
1 parent 7dce675 commit a2c15cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/communities/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@
continentChartCanvas.getContext('2d');
if (location.hash) {
section = location.hash.slice(1).replaceAll('%20', ' ');
section = decodeURI(location.hash).slice(1);
} else {
section = 'Africa';
}
Expand Down

0 comments on commit a2c15cd

Please sign in to comment.