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 (