From 13bd1017ebf6dfedaf1ab1ccb784493c139b21a5 Mon Sep 17 00:00:00 2001 From: Dominik Stumpf Date: Wed, 24 Jul 2024 12:50:22 +0200 Subject: [PATCH] fix: rename type --- src/app/(marketing)/create-profile/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(marketing)/create-profile/types.ts b/src/app/(marketing)/create-profile/types.ts index baf0652fac..b30994270e 100644 --- a/src/app/(marketing)/create-profile/types.ts +++ b/src/app/(marketing)/create-profile/types.ts @@ -12,5 +12,5 @@ export type DispatchChainAction = ( export type OnboardingChain = FunctionComponent<{ dispatchChainAction: DispatchChainAction - data: Partial + chainData: Partial }>