Yuki Takei 7 bulan lalu
induk
melakukan
21c96aa673
1 mengubah file dengan 3 tambahan dan 3 penghapusan
  1. 3 3
      apps/app/src/pages/maintenance/index.page.tsx

+ 3 - 3
apps/app/src/pages/maintenance.page.tsx → apps/app/src/pages/maintenance/index.page.tsx

@@ -1,11 +1,11 @@
 import type { NextPage, GetServerSideProps, GetServerSidePropsContext } from 'next';
 import dynamic from 'next/dynamic';
 
-import type { CommonEachProps, CommonInitialProps } from './common-props';
+import type { CommonEachProps, CommonInitialProps } from '../common-props';
 import {
   getServerSideCommonEachProps, getServerSideCommonInitialProps, getServerSideI18nProps,
-} from './common-props';
-import { mergeGetServerSidePropsResults } from './utils/server-side-props';
+} from '../common-props';
+import { mergeGetServerSidePropsResults } from '../utils/server-side-props';
 
 
 const Maintenance = dynamic(() => import('~/client/components/Maintenance').then(mod => mod.Maintenance), { ssr: false });