From 339d34c842a8a9cb300e3ae09b05c92fcef1ac14 Mon Sep 17 00:00:00 2001 From: GertsDev Date: Sun, 22 Feb 2026 22:42:04 -0500 Subject: [PATCH] fix(setup): remove duplicate ens identity card --- .../setup/components/ens-name-card.tsx | 30 ------------------- .../(app)/dashboard/setup/components/index.ts | 1 - .../setup/components/setup-wizard.tsx | 4 +-- 3 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 src/app/(app)/dashboard/setup/components/ens-name-card.tsx diff --git a/src/app/(app)/dashboard/setup/components/ens-name-card.tsx b/src/app/(app)/dashboard/setup/components/ens-name-card.tsx deleted file mode 100644 index ea7151e..0000000 --- a/src/app/(app)/dashboard/setup/components/ens-name-card.tsx +++ /dev/null @@ -1,30 +0,0 @@ -'use client' - -interface EnsNameCardProps { - ensName: string -} - -export function EnsNameCard({ ensName }: EnsNameCardProps) { - return ( -
-
-
-
- {ensName.charAt(0).toUpperCase()} -
-
-
-

- {ensName}.eth -

-

- Your ENS business name -

-
-
-
- ) -} diff --git a/src/app/(app)/dashboard/setup/components/index.ts b/src/app/(app)/dashboard/setup/components/index.ts index 1ea3f14..fc05698 100644 --- a/src/app/(app)/dashboard/setup/components/index.ts +++ b/src/app/(app)/dashboard/setup/components/index.ts @@ -1,5 +1,4 @@ export { CostBreakdownCard } from './cost-breakdown-card' -export { EnsNameCard } from './ens-name-card' export { FoundersForm } from './founders-form' export { PaymentStep } from './payment-step' export { RegistrationProgressCard } from './registration-progress-card' diff --git a/src/app/(app)/dashboard/setup/components/setup-wizard.tsx b/src/app/(app)/dashboard/setup/components/setup-wizard.tsx index f76a6b7..4209832 100644 --- a/src/app/(app)/dashboard/setup/components/setup-wizard.tsx +++ b/src/app/(app)/dashboard/setup/components/setup-wizard.tsx @@ -11,7 +11,6 @@ import { STARTUPCHAIN_CHAIN_ID } from '@/lib/blockchain/startupchain-config' import { useDraftStore } from '@/lib/store/draft' import { CostBreakdownCard } from './cost-breakdown-card' -import { EnsNameCard } from './ens-name-card' import { FoundersForm } from './founders-form' import { RegistrationProgressCard } from './registration-progress-card' @@ -288,7 +287,7 @@ export function SetupWizard({ initialEnsName }: SetupWizardProps) { return (
-
+

@@ -324,7 +323,6 @@ export function SetupWizard({ initialEnsName }: SetupWizardProps) { ) : (

-