From caae45eefbebb73ff3985a6c45e12f6ac0187242 Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Thu, 8 Jan 2026 18:42:57 +0700 Subject: [PATCH] fix(docs): add proper Typescript types to _app.tsx to satisfy build checker --- pages/_app.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/_app.tsx b/pages/_app.tsx index 048541e..c055f25 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,5 +1,6 @@ import '../styles/globals.css' +import type { AppProps } from 'next/app' -export default function App({ Component, pageProps }) { +export default function App({ Component, pageProps }: AppProps) { return }