Moved suspense boundary.

This commit is contained in:
Mike Cao 2024-02-17 10:41:34 -08:00
parent fb72485f88
commit 709f46a391
2 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,10 @@
import { Suspense } from 'react';
import SSOPage from './SSOPage';
export default function () {
return <SSOPage />;
return (
<Suspense>
<SSOPage />
</Suspense>
);
}