From 52004a2d3b385b3a4f8828a2c12e3f9cdfbe32b0 Mon Sep 17 00:00:00 2001 From: ani-kalpachka Date: Tue, 30 Jan 2024 15:03:05 +0200 Subject: [PATCH] fix lint error --- src/pages/contact.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx index 9bbe36177..ae5175cf4 100644 --- a/src/pages/contact.tsx +++ b/src/pages/contact.tsx @@ -5,7 +5,13 @@ import ContactPage from 'components/client/contact/ContactPage' export const getStaticProps: GetStaticProps = async ({ locale }) => ({ props: { - ...(await serverSideTranslations(locale ?? 'bg', ['common', 'auth', 'validation', 'contact', 'campaigns'])), + ...(await serverSideTranslations(locale ?? 'bg', [ + 'common', + 'auth', + 'validation', + 'contact', + 'campaigns', + ])), }, })