Skip to content

Commit

Permalink
fix: product selector URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian committed Oct 25, 2023
1 parent c0be49b commit 55ee187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/sidenav/sidenav.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const initProductDropdown = async (wrapper) => {
curProductBtn.textContent = curProduct.Product;
}

const makeHref = (url) => `${PATH_PREFIX}/${lang}${url ? `${url}/` : ''}`;
const makeHref = (url) => `${PATH_PREFIX}/${lang}${url ? `${url}` : ''}`;

const newProducts = json.data
.map((row) => {
Expand Down

0 comments on commit 55ee187

Please sign in to comment.