feat(portal): harden industrial dashboard tabs smoke

This commit is contained in:
igor04091968
2026-06-04 08:21:53 +03:00
parent 2645082183
commit 9f5f99ae65
5 changed files with 356 additions and 46 deletions
+1 -3
View File
@@ -71,9 +71,7 @@ fn default_node_path(current: Option<&OsStr>) -> Option<OsString> {
if current.is_some_and(|value| !value.is_empty()) {
return None;
}
let Some(home) = std::env::var_os("HOME") else {
return None;
};
let home = std::env::var_os("HOME")?;
let path = PathBuf::from(home)
.join(".agents")
.join("skills")