From 887c40c2c6d77b0786627ed64513fdf1ee62513a Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Wed, 30 Jul 2025 03:39:45 +0200 Subject: [PATCH] Fix linting 2 --- app/complete-profile/page.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/complete-profile/page.tsx b/app/complete-profile/page.tsx index 10c72afd..e13bb70c 100644 --- a/app/complete-profile/page.tsx +++ b/app/complete-profile/page.tsx @@ -1,6 +1,6 @@ 'use client'; -import {ChangeEvent, useEffect, useRef, useState} from 'react'; +import {ChangeEvent, Suspense, useEffect, useRef, useState} from 'react'; import {useRouter, useSearchParams} from 'next/navigation'; import {useSession} from 'next-auth/react'; import Image from 'next/image'; @@ -8,6 +8,14 @@ import {ConflictStyle, Gender, PersonalityType} from "@prisma/client"; import {parseImage} from "@/lib/client/media"; export default function CompleteProfile() { + return ( + }> + + + ); +} + +function RegisterComponent() { const searchParams = useSearchParams(); const redirect = searchParams.get('redirect') || '/';