fix(SW-360): signup form props

This commit is contained in:
Chuma McPhoy
2024-10-08 14:56:35 +02:00
parent e84b3ca980
commit 2fce70e866
6 changed files with 9 additions and 19 deletions

View File

@@ -19,15 +19,6 @@ export interface OverviewTableProps extends PartialDynamicContent {
firstItem: boolean
}
export interface SignUpVerificationProps {
title: string
subtitle: string
}
export interface SignupFormWrapperProps extends PartialDynamicContent {}
export interface SignupFormWrapperProps {
dynamic_content: {
link: string
subtitle: string
title: string
}
}
export interface SignUpVerificationProps extends PartialDynamicContent {}

View File

@@ -1,5 +1,5 @@
export type RegisterFormProps = {
link?: { href: string; text: string }
subtitle: string
subtitle?: string
title: string
}