fix(shared): Correct namespace for translation
This commit is contained in:
parent
a7e81fea2c
commit
60321d2342
1 changed files with 2 additions and 2 deletions
|
@ -5,12 +5,12 @@ import { Ul, Details, TopSummary, TopSumTitle } from 'shared/components/workbenc
|
|||
import { useTranslation } from 'next-i18next'
|
||||
|
||||
const DesignOptions = props => {
|
||||
const { t } = useTranslation(['workbench'])
|
||||
const { t } = useTranslation(['app'])
|
||||
|
||||
return (
|
||||
<Details open>
|
||||
<TopSummary icon={<OptionsIcon />}>
|
||||
<TopSumTitle>{t('designOptions')}</TopSumTitle>
|
||||
<TopSumTitle>{t('app:designOptions')}</TopSumTitle>
|
||||
<Chevron />
|
||||
</TopSummary>
|
||||
<Ul className="pl-5 list-inside">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue