瀏覽代碼

fix lint error

Yuki Takei 4 月之前
父節點
當前提交
2d2d84d0e5
共有 1 個文件被更改,包括 3 次插入2 次删除
  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 },
 );