fix missing translation

This commit is contained in:
saml33 2023-01-12 14:52:56 +11:00
parent 6a902fb1dd
commit 9a975d58a7
2 changed files with 3 additions and 2 deletions

View File

@ -442,7 +442,7 @@ const MobileTokenListItem = ({ bank }: { bank: Bank }) => {
onClick={() => goToTokenPage(bank)}
>
{t('token:token-details')}
<ChevronRightIcon className="ml-2 h-5 w-5" />
<ChevronRightIcon className="ml-1.5 h-5 w-5" />
</LinkButton>
</div>
</div>

View File

@ -6,6 +6,7 @@ export async function getStaticProps({ locale }: { locale: string }) {
return {
props: {
...(await serverSideTranslations(locale, [
'activity',
'common',
'onboarding',
'onboarding-tours',
@ -13,8 +14,8 @@ export async function getStaticProps({ locale }: { locale: string }) {
'search',
'settings',
'swap',
'token',
'trade',
'activity',
])),
},
}