diff --git a/ui/shared/EntityTags/utils.ts b/ui/shared/EntityTags/utils.ts index 8951d3b729..4454d87872 100644 --- a/ui/shared/EntityTags/utils.ts +++ b/ui/shared/EntityTags/utils.ts @@ -1,6 +1,6 @@ import type { EntityTag } from './types'; -// import { route } from 'nextjs-routes'; +import { route } from 'nextjs-routes'; export function getTagLinkParams(data: EntityTag): { type: 'external' | 'internal'; href: string } | undefined { if (data.meta?.warpcastHandle) { @@ -17,10 +17,10 @@ export function getTagLinkParams(data: EntityTag): { type: 'external' | 'interna }; } - // if (data.tagType === 'generic' || data.tagType === 'protocol') { - // return { - // type: 'internal', - // href: route({ pathname: '/accounts/label/[slug]', query: { slug: data.slug, tagType: data.tagType, tagName: data.name } }), - // }; - // } + if (data.tagType === 'generic' || data.tagType === 'protocol') { + return { + type: 'internal', + href: route({ pathname: '/accounts/label/[slug]', query: { slug: data.slug, tagType: data.tagType, tagName: data.name } }), + }; + } }