Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/webpack-dev-middlewa…
Browse files Browse the repository at this point in the history
…re-5.3.4
  • Loading branch information
Razzmatazzz authored Mar 23, 2024
2 parents 861ebe0 + d1eaa52 commit 6f7eb42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/menu/MenuItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function MenuItem(props) {
let currentAmmo = '';
let ammoTypes = [];
if (routeMatch) {
currentAmmo = routeMatch.params.currentAmmo;
currentAmmo = decodeURIComponent(routeMatch.params.currentAmmo);
ammoTypes = currentAmmo.split(',');
}

Expand Down

0 comments on commit 6f7eb42

Please sign in to comment.