소스 검색

fix code position

yohei0125 3 년 전
부모
커밋
313503c961
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      packages/app/src/components/PageAlert/PageAlerts.tsx

+ 2 - 1
packages/app/src/components/PageAlert/PageAlerts.tsx

@@ -1,10 +1,11 @@
 import React from 'react';
 
+import dynamic from 'next/dynamic';
+
 import { FixPageGrantAlert } from './FixPageGrantAlert';
 import { OldRevisionAlert } from './OldRevisionAlert';
 import { PageGrantAlert } from './PageGrantAlert';
 import { PageStaleAlert } from './PageStaleAlert';
-import dynamic from 'next/dynamic';
 
 // dynamic import because TrashPageAlert uses localStorageMiddleware
 const TrashPageAlert = dynamic(() => import('./TrashPageAlert').then(mod => mod.TrashPageAlert), { ssr: false });