1
0
Fork 0

fix(shared): Correct namespace for translation

This commit is contained in:
Joost De Cock 2022-02-19 14:21:54 +01:00
parent a7e81fea2c
commit 60321d2342

View file

@ -5,12 +5,12 @@ import { Ul, Details, TopSummary, TopSumTitle } from 'shared/components/workbenc
import { useTranslation } from 'next-i18next' import { useTranslation } from 'next-i18next'
const DesignOptions = props => { const DesignOptions = props => {
const { t } = useTranslation(['workbench']) const { t } = useTranslation(['app'])
return ( return (
<Details open> <Details open>
<TopSummary icon={<OptionsIcon />}> <TopSummary icon={<OptionsIcon />}>
<TopSumTitle>{t('designOptions')}</TopSumTitle> <TopSumTitle>{t('app:designOptions')}</TopSumTitle>
<Chevron /> <Chevron />
</TopSummary> </TopSummary>
<Ul className="pl-5 list-inside"> <Ul className="pl-5 list-inside">