use more unwraps instead of let _ =

This commit is contained in:
2025-11-05 00:08:53 +00:00
parent 2030796337
commit 3ab5987b67
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -243,8 +243,8 @@ impl App {
.button("")
.on_hover_text("Go to current latest version.");
if button.clicked() {
let _ =
open::that("https://github.com/elituf/gta-tools/releases/latest");
open::that("https://github.com/elituf/gta-tools/releases/latest")
.unwrap();
}
});
});