refactor(LOY-116): consolidate signup auth & remove SignUpVerification component * refactor(LOY-116): simplify signup authentication and remove SignUpVerification component - Remove SignUpVerification component and its related files - Move authentication checks to page-level components - Consolidate signup flow authentication logic - Remove unused signup verification link variant * refactor(LOY-116): remove "sign up verification" from TrackingPosition type Approved-by: Christian Andolf
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import SignupForm from "@/components/Forms/Signup"
|
|
|
|
import type { SignupFormWrapperProps } from "@/types/components/blocks/dynamicContent"
|
|
|
|
export default async function SignupFormWrapper({
|
|
dynamic_content,
|
|
}: SignupFormWrapperProps) {
|
|
return <SignupForm {...dynamic_content} />
|
|
}
|