From 0b7f0f301d52f36ec8f3fdd72141819900079a99 Mon Sep 17 00:00:00 2001 From: Artemy Egorov Date: Tue, 6 Aug 2024 19:48:57 +0300 Subject: [PATCH] fix: remove warn --- src-tauri/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/types.rs b/src-tauri/src/types.rs index a492924..441a06b 100644 --- a/src-tauri/src/types.rs +++ b/src-tauri/src/types.rs @@ -208,7 +208,7 @@ impl VigiState { if self.current_tab_index > 0 { self.select_tab(self.current_tab_index - 1)?; } else { - self.update_top_bar_input(); + self.update_top_bar_input()?; } }