We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c993c5a commit 42075a3Copy full SHA for 42075a3
packages/linea-ens-app/src/routes.ts
@@ -247,7 +247,7 @@ export const getDestination = (url: UrlObject | string) => {
247
const values = href.split('/')
248
let replacedDestination = (isIPFS ? rewrite.destination : rewrite.flattenedDestination)
249
.replace(/\$(\d)/g, (_, n) => values[parseInt(n)])
250
- .replace('#', '%23')
+ .replace(/#/g, '%23')
251
if (!isIPFS && rewrite.tldPrefix && !replacedDestination.includes('.')) {
252
replacedDestination = `/tld${replacedDestination}`
253
}
0 commit comments