Skip to content

Commit

Permalink
fix: remove equal character from url slugs (#1112)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhhyi authored Apr 8, 2022
1 parent 8b9a10c commit 26c61d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/utils/routing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ export function addGlobalGuard(
/**
* RegEx that finds reserved characters that should not be contained in non functional parts of routes/URLs (e.g product slugs for SEO)
*/
export const reservedCharactersRegEx = /[ &\(\)]/g;
export const reservedCharactersRegEx = /[ &\(\)=]/g;

0 comments on commit 26c61d6

Please sign in to comment.