diff --git a/pages/[username].tsx b/pages/[username].tsx index 99a347d7..148f52d4 100644 --- a/pages/[username].tsx +++ b/pages/[username].tsx @@ -391,7 +391,7 @@ export const getServerSideProps = async ({ req, res, locale, query }: { req: Nex meta: meta, raids: raids, sortedRaids: sortedRaids, - ...(await serverSideTranslations(locale, ['common'])), + ...(await serverSideTranslations(locale, ['common', 'roadmap'])), // Will be passed to the page component as props }, } diff --git a/pages/new/index.tsx b/pages/new/index.tsx index ff174d2e..d3f3881b 100644 --- a/pages/new/index.tsx +++ b/pages/new/index.tsx @@ -105,7 +105,7 @@ export const getServerSideProps = async ({ req, res, locale, query }: { req: Nex raids: raids, sortedRaids: sortedRaids, weaponKeys: weaponKeys, - ...(await serverSideTranslations(locale, ['common'])), + ...(await serverSideTranslations(locale, ['common', 'roadmap'])), // Will be passed to the page component as props }, } diff --git a/pages/p/[party].tsx b/pages/p/[party].tsx index bd5b736a..7e1631ca 100644 --- a/pages/p/[party].tsx +++ b/pages/p/[party].tsx @@ -190,9 +190,9 @@ export const getServerSideProps = async ({ req, res, locale, query }: { req: Nex sortedRaids: sortedRaids, weaponKeys: weaponKeys, meta: { - element: elementEmoji() + element: elementEmoji(), }, - ...(await serverSideTranslations(locale, ['common'])), + ...(await serverSideTranslations(locale, ['common', 'roadmap'])), // Will be passed to the page component as props }, } diff --git a/pages/saved.tsx b/pages/saved.tsx index 93b7e16b..cf8313e4 100644 --- a/pages/saved.tsx +++ b/pages/saved.tsx @@ -382,7 +382,7 @@ export const getServerSideProps = async ({ req, res, locale, query }: { req: Nex meta: meta, raids: raids, sortedRaids: sortedRaids, - ...(await serverSideTranslations(locale, ['common'])), + ...(await serverSideTranslations(locale, ['common', 'roadmap'])), // Will be passed to the page component as props }, } diff --git a/pages/teams.tsx b/pages/teams.tsx index 41cc17b4..ec84eea4 100644 --- a/pages/teams.tsx +++ b/pages/teams.tsx @@ -393,7 +393,7 @@ export const getServerSideProps = async ({ req, res, locale, query }: { req: Nex meta: meta, raids: raids, sortedRaids: sortedRaids, - ...(await serverSideTranslations(locale, ['common'])), + ...(await serverSideTranslations(locale, ['common', 'roadmap'])), // Will be passed to the page component as props }, }