diff --git a/src/app/features/config/form-cfgs/imex-form.const.ts b/src/app/features/config/form-cfgs/imex-form.const.ts index 07886929f7..e530d3946b 100644 --- a/src/app/features/config/form-cfgs/imex-form.const.ts +++ b/src/app/features/config/form-cfgs/imex-form.const.ts @@ -4,7 +4,8 @@ import { T } from '../../../t.const'; export const IMEX_FORM: ConfigFormSection<{ [key: string]: any }> = { title: T.GCF.IMEX.TITLE, - key: 'EMPTY', + // @ts-ignore + key: 'IMEX_YEAH', help: T.GCF.IMEX.HELP, customSection: 'FILE_IMPORT_EXPORT', }; diff --git a/src/app/features/config/form-cfgs/sync-safety-backups-form.const.ts b/src/app/features/config/form-cfgs/sync-safety-backups-form.const.ts index 74561a721f..ac921c61e0 100644 --- a/src/app/features/config/form-cfgs/sync-safety-backups-form.const.ts +++ b/src/app/features/config/form-cfgs/sync-safety-backups-form.const.ts @@ -3,7 +3,8 @@ import { ConfigFormSection } from '../global-config.model'; export const SYNC_SAFETY_BACKUPS_FORM: ConfigFormSection<{ [key: string]: any }> = { title: 'Sync Safety Backups', - key: 'EMPTY', + // @ts-ignore + key: 'EMPTY_SYNC_SAFETY_BACKUPS', help: 'Automatic backups created before destructive sync operations to prevent data loss.', customSection: 'SYNC_SAFETY_BACKUPS', };