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
3 changed files with 13 additions and 5 deletions
Showing only changes of commit 3f9d0fad6b - Show all commits
@@ -118,7 +118,8 @@ export function HostManagerEditor({
setFolders(uniqueFolders);
setSshConfigurations(uniqueConfigurations);
} catch (error) {
} catch {
// Failed to load hosts data
} finally {
setLoading(false);
}
@@ -152,7 +153,8 @@ export function HostManagerEditor({
setFolders(uniqueFolders);
setSshConfigurations(uniqueConfigurations);
} catch (error) {
} catch {
// Failed to reload hosts after credential change
} finally {
setLoading(false);
}
+3 -1
View File
@@ -105,7 +105,9 @@ export function HomepageAuth({
const clearJWTOnLoad = async () => {
try {
await logoutUser();
} catch (error) {}
} catch {
// Ignore logout errors on initial load
}
};
clearJWTOnLoad();
+6 -2
View File
@@ -59,7 +59,9 @@ export function useDragToSystemDesktop({
};
});
}
} catch (error) {}
} catch {
// IndexedDB not available or failed to retrieve directory
}
return null;
};
@@ -75,7 +77,9 @@ export function useDragToSystemDesktop({
store.put({ handle: dirHandle }, "lastSaveDir");
};
}
} catch (error) {}
} catch {
// Failed to save directory handle
}
};
const isFileSystemAPISupported = () => {