diff --git a/src/3-widgets/Navigation/SettingsMenu.tsx b/src/3-widgets/Navigation/SettingsMenu.tsx
index efb64b19..a8858286 100644
--- a/src/3-widgets/Navigation/SettingsMenu.tsx
+++ b/src/3-widgets/Navigation/SettingsMenu.tsx
@@ -39,8 +39,11 @@ import { resetData } from 'store/data'
import { userSettingsModel } from '5-entities/userSettings'
import { useRegularSync } from '3-widgets/RegularSyncHandler'
import { logOut } from '4-features/authorization'
-import { exportCSV } from '4-features/export/exportCSV'
-import { exportJSON } from '4-features/export/exportJSON'
+import {
+ exportCSV,
+ exportJSON,
+ exportSimpleJSON,
+} from '4-features/export'
import { clearLocalData } from '4-features/localData'
import { convertZmBudgetsToZerro } from '4-features/budget/convertZmBudgetsToZerro'
import { registerPopover } from '6-shared/historyPopovers'
@@ -96,6 +99,7 @@ const Settings = (props: { onClose: () => void; showLinks?: boolean }) => {
{t('export')}
+
@@ -127,12 +131,12 @@ function ExportCsvItem() {
function ExportJsonItem() {
const { t } = useTranslation('settings')
const dispatch = useAppDispatch()
- const handleExportCSV = () => {
+ const handleExportJSON = () => {
sendEvent('Settings: export json')
dispatch(exportJSON)
}
return (
-