From 600c373ef27aa5d33cc71846bb425523efdee684 Mon Sep 17 00:00:00 2001 From: Joel Date: Fri, 13 Feb 2026 11:13:49 +0800 Subject: [PATCH] fix: author page include source --- .../plugins/marketplace/search-page/creator-card.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/app/components/plugins/marketplace/search-page/creator-card.tsx b/web/app/components/plugins/marketplace/search-page/creator-card.tsx index b6938f7117..2a514f6749 100644 --- a/web/app/components/plugins/marketplace/search-page/creator-card.tsx +++ b/web/app/components/plugins/marketplace/search-page/creator-card.tsx @@ -2,7 +2,6 @@ import type { Creator } from '../types' import { useTranslation } from '#i18n' -import { getMarketplaceUrl } from '@/utils/var' import { getCreatorAvatarUrl } from '../utils' type CreatorCardProps = { @@ -11,7 +10,7 @@ type CreatorCardProps = { const CreatorCard = ({ creator }: CreatorCardProps) => { const { t } = useTranslation() - const href = getMarketplaceUrl(`/creator/${creator.unique_handle}`) + const href = `/creator/${creator.unique_handle}` const displayName = creator.display_name || creator.name return (