From 281994a4184a9e7d64fce35b8a13def49eaa31d4 Mon Sep 17 00:00:00 2001 From: LuizFNJ Date: Wed, 20 Nov 2024 17:22:07 +0100 Subject: [PATCH] Fixing missing query in about-page --- src/pages/about-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/about-page.tsx b/src/pages/about-page.tsx index 7235e6976..a4432f659 100644 --- a/src/pages/about-page.tsx +++ b/src/pages/about-page.tsx @@ -17,7 +17,7 @@ const AboutPage: NextPage<{ data: string }> = () => { ); }; -export async function getServerSideProps({ locale, locales, req }) { +export async function getServerSideProps({ query, locale, locales, req }) { locale = GetLocale(req, locale, locales); query = JSON.parse(query.props); return {