Fix AppContainer tests and TypeScript errors

This commit is contained in:
mkorwel
2026-04-17 15:18:01 +00:00
parent 38fe709151
commit 18369c0366
41 changed files with 755 additions and 482 deletions
@@ -325,7 +325,11 @@ export function BaseSettingsDialog({
}
// Enter in edit mode - commit
if (keyMatchers[Command.RETURN](key) || key.name === 'enter' || key.sequence === '\r') {
if (
keyMatchers[Command.RETURN](key) ||
key.name === 'enter' ||
key.sequence === '\r'
) {
commitEdit();
return;
}