Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ani-kalpachka committed Jan 30, 2024
1 parent 04b1b0e commit 52004a2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
])),
},
})

Expand Down

0 comments on commit 52004a2

Please sign in to comment.