Explorar el Código

fix code position

yohei0125 hace 3 años
padre
commit
313503c961
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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 });