fixed a bug where switching projects wouldn't

switch projects.
This commit is contained in:
pyro57000
2025-04-30 09:59:50 -05:00
parent 0cbe33357a
commit f99e395241
3 changed files with 55 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ pub fn switch_project(projects: &mut Vec<Project>){
project.active = false;
}
else{
println!("error unknown project id")
println!("error unknown project id");
}
}
}