From 26dc311456351c43fe53c2d40c0e5a14691a583b Mon Sep 17 00:00:00 2001 From: tjs Date: Fri, 29 Sep 2023 19:46:54 -0400 Subject: [PATCH] fix translation --- pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.tsx b/pages/index.tsx index 2f194b2..cd5ad29 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -14,7 +14,7 @@ const set = mangoStore.getState().set export async function getStaticProps({ locale }: { locale: string }) { return { props: { - ...(await serverSideTranslations(locale, ['common'])), + ...(await serverSideTranslations(locale, ['common', 'swap'])), }, } }