Merge branch 'dev' into analytics

This commit is contained in:
Mike Cao 2024-02-17 10:48:36 -08:00
commit a985245c79
1 changed files with 6 additions and 1 deletions

View File

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