Skip to content

Commit

Permalink
Merge pull request #1464 from AletheiaFact/Fixing-missing-query-in-ab…
Browse files Browse the repository at this point in the history
…out-page

Fixing missing query in about-page
  • Loading branch information
pepermao authored Nov 21, 2024
2 parents 39593ef + 281994a commit d9e0361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/about-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d9e0361

Please sign in to comment.