Skip to content

Commit 42d9df8

Browse files
fix: use getSupportLink for offchain names banner on My Names page
Replace hardcoded support URL with getSupportLink helper to ensure the link stays consistent with the centralized supportLinks configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 60d494b commit 42d9df8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/my/names.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { useAccount } from 'wagmi'
77
import { Banner, QuestionCircleSVG } from '@ensdomains/thorin'
88

99
import { NameListView } from '@app/components/@molecules/NameListView/NameListView'
10+
import { getSupportLink } from '@app/utils/supportLinks'
1011
import { useProtectedRoute } from '@app/hooks/useProtectedRoute'
1112
import { Content } from '@app/layouts/Content'
1213
import { ContentGrid } from '@app/layouts/ContentGrid'
@@ -42,7 +43,7 @@ export default function Page() {
4243
as="a"
4344
target="_blank"
4445
rel="noopener noreferrer"
45-
href="https://support.ens.domains/en/articles/9375254-why-is-my-ens-name-not-in-my-names"
46+
href={getSupportLink('offchain-not-in-names')}
4647
icon={QuestionCircleSVG}
4748
title={t('offchainWarning.title')}
4849
>

0 commit comments

Comments
 (0)