mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Merge branch 'dev' into analytics
This commit is contained in:
commit
a985245c79
1 changed files with 6 additions and 1 deletions
|
|
@ -1,5 +1,10 @@
|
|||
import { Suspense } from 'react';
|
||||
import SSOPage from './SSOPage';
|
||||
|
||||
export default function () {
|
||||
return <SSOPage />;
|
||||
return (
|
||||
<Suspense>
|
||||
<SSOPage />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue