fix: warning

This commit is contained in:
Johannes Millan 2025-07-05 22:05:55 +02:00
parent a9238da152
commit 0c9cea4698
2 changed files with 4 additions and 2 deletions

View file

@ -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',
};

View file

@ -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',
};