Ver código fonte

fix lint error

Yuki Takei 4 meses atrás
pai
commit
2d2d84d0e5
1 arquivos alterados com 3 adições e 2 exclusões
  1. 3 2
      apps/app/src/pages/admin/index.page.tsx

+ 3 - 2
apps/app/src/pages/admin/index.page.tsx

@@ -14,8 +14,9 @@ import {
 } from './_shared';
 
 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 },
 );