diff --git a/src/app/password-reset/page.tsx b/src/app/password-reset/page.tsx index c0446f0..0db2c8d 100644 --- a/src/app/password-reset/page.tsx +++ b/src/app/password-reset/page.tsx @@ -1,6 +1,6 @@ 'use client' -import { useState, useEffect } from 'react' +import { useState, useEffect, Suspense } from 'react' // CHANGED: add Suspense import { useSearchParams, useRouter } from 'next/navigation' import PageLayout from '../components/PageLayout' import Waves from '../components/background/waves' @@ -352,7 +352,18 @@ function PasswordResetPageInner() { export default function PasswordResetPage() { return ( - + +
+
+

Loading...

+
+
+ } + > + +
) } \ No newline at end of file