Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

fix: use global replace instead of replaceAll #3550

Merged
merged 1 commit into from
Feb 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const SAFE_ROUTES = {
export const getNetworkRootRoutes = (): Array<{ chainId: ChainId; route: string; shortName: string }> =>
getChains().map(({ chainId, chainName, shortName }) => ({
chainId,
route: `/${chainName.replaceAll(' ', '-').toLowerCase()}`,
route: `/${chainName.replace(/\s+/g, '-').toLowerCase()}`,
shortName,
}))

Expand Down