Skip to content

Commit

Permalink
Fixing missing query in about-page
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizFNJ committed Nov 20, 2024
1 parent f14dbad commit 281994a
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 281994a

Please sign in to comment.