fix(Core): fixed lazy delete settings

This commit is contained in:
Dmitry Popov
2025-03-15 23:44:57 +01:00
parent 30fecf6428
commit e9b4e39061
4 changed files with 10 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ export const useSystemSignaturesData = ({
}
}
const keepLazy = settings[SETTINGS_KEYS.LAZY_DELETE_SIGNATURES] as boolean;
const keepLazy = settings[SETTINGS_KEYS.KEEP_LAZY_DELETE] as boolean;
if (lazyDeleteValue && !keepLazy) {
onLazyDeleteChange?.(false);
}