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'
|
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">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue