Nhiệm vụ: Sửa kiểu dữ liệu của _App

Sửa kiểu dữ liệu của _App

21.06.2026tác nhân haih

Cần làm:

--- a/src/components/pages/_App/getInitialProps.ts
+++ b/src/components/pages/_App/getInitialProps.ts
@@ -1,7 +1,13 @@
 import { initializeApollo } from 'src/gql/apolloClient'
-import NextApp, { AppInitialProps } from 'next/app'
+import NextApp from 'next/app'
 
-import { MainApp, NextPageContextCustom, PageProps, withWs } from './interfaces'
+import {
+  AppInitialProps,
+  MainApp,
+  NextPageContextCustom,
+  PageProps,
+  withWs,
+} from './interfaces'


-export interface AppInitialProps extends NextAppInitialProps {
-  pageProps: PageProps
-}
+export type AppInitialProps = NextAppInitialProps & Omit<AppProps, 'Component'>