|
@@ -14,8 +14,9 @@ import {
|
|
|
} from './_shared';
|
|
} from './_shared';
|
|
|
|
|
|
|
|
const AdminHome = dynamic(
|
|
const AdminHome = dynamic(
|
|
|
- // biome-ignore lint/style/noRestrictedImports: no-problem dynamic import
|
|
|
|
|
- () => import('~/client/components/Admin/AdminHome').then((mod) => mod.AdminHome),
|
|
|
|
|
|
|
+ () =>
|
|
|
|
|
+ // biome-ignore lint/style/noRestrictedImports: no-problem dynamic import
|
|
|
|
|
+ import('~/client/components/Admin/AdminHome').then((mod) => mod.AdminHome),
|
|
|
{ ssr: false },
|
|
{ ssr: false },
|
|
|
);
|
|
);
|
|
|
|
|
|