Feature engineering improvements #376

Merged
LukeGus merged 20 commits from feature-engineering-improvements into dev-1.8.0 2025-10-08 01:06:01 +00:00
4 changed files with 11 additions and 4 deletions
Showing only changes of commit 91aed889a7 - Show all commits

View File

@@ -76,7 +76,9 @@ class SystemCrypto {
process.env.DATABASE_KEY = dbKeyMatch[1];
return;
}
} catch {}
} catch {
// Ignore file read errors, will generate new key
}
await this.generateAndGuideDatabaseKey();
} catch (error) {

View File

@@ -191,7 +191,8 @@ export function Tunnel({ filterHostKey }: SSHTunnelProps): React.ReactElement {
}
await fetchTunnelStatuses();
} catch (err) {
} catch {
// Ignore tunnel action errors
} finally {
setTunnelActions((prev) => ({ ...prev, [tunnelName]: false }));
}

View File

@@ -43,7 +43,9 @@ export function ServerConfig({
setServerUrl(config.serverUrl);
setConnectionStatus("success");
}
} catch (error) {}
} catch {
// Ignore config loading errors
}
};
const handleTestConnection = async () => {

View File

@@ -110,7 +110,9 @@ export function TerminalKeyboard({
if (navigator.vibrate) {
navigator.vibrate(20);
}
} catch (e) {}
} catch {
// Ignore vibration errors on unsupported devices
}
onSendInput(input);
},