diff --git a/src/components/menu/MenuItem.jsx b/src/components/menu/MenuItem.jsx index 39dd1881b..44967f436 100644 --- a/src/components/menu/MenuItem.jsx +++ b/src/components/menu/MenuItem.jsx @@ -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(','); }