mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 09:05:36 +01:00
Moved suspense boundary.
This commit is contained in:
parent
fb72485f88
commit
709f46a391
2 changed files with 7 additions and 7 deletions
|
|
@ -1,5 +1,10 @@
|
|||
import { Suspense } from 'react';
|
||||
import SSOPage from './SSOPage';
|
||||
|
||||
export default function () {
|
||||
return <SSOPage />;
|
||||
return (
|
||||
<Suspense>
|
||||
<SSOPage />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue