diff --git a/src/features/settings/components/__tests__/SettingsInput.test.js b/src/features/settings/components/__tests__/SettingsInput.test.js index 7b4f3c7..d7c959a 100644 --- a/src/features/settings/components/__tests__/SettingsInput.test.js +++ b/src/features/settings/components/__tests__/SettingsInput.test.js @@ -89,7 +89,7 @@ describe('SettingsInput', () => { const wrapper = getWrapper({ type: 'string', i18n: 'input', - defaultValue: defaultValue, + defaultValue, piniaOptions: { setupStores: () => { const store = useSettingsStore(); diff --git a/src/features/settings/components/__tests__/SettingsPage.test.js b/src/features/settings/components/__tests__/SettingsPage.test.js index 95bfffc..5420af5 100644 --- a/src/features/settings/components/__tests__/SettingsPage.test.js +++ b/src/features/settings/components/__tests__/SettingsPage.test.js @@ -30,7 +30,7 @@ const getWrapper = function getWrapper({ content = [], translations = {}, piniaO name: 'section', type: 'section', i18n: 'section', - content: content + content }, path: 'section' } diff --git a/src/i18n.js b/src/i18n.js index 43aa4a6..25b4576 100644 --- a/src/i18n.js +++ b/src/i18n.js @@ -34,7 +34,7 @@ export const SUPPORTED_LANGUAGES = [ export const i18n = createI18n({ legacy: false, locale: fallbackLocale, - fallbackLocale: fallbackLocale, + fallbackLocale, messages: {} });