From 682deadb489e7979f27a1ca3a0179e27660f6825 Mon Sep 17 00:00:00 2001 From: Uncle Stretch Date: Sat, 16 Aug 2025 23:01:56 +0300 Subject: [PATCH] avoid duplication in hot keys for wallet tab Signed-off-by: Uncle Stretch --- Cargo.toml | 2 +- src/components/wallet/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 35bed31..4bc883f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "ghost-eye" authors = ["str3tch "] description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost" -version = "0.3.66" +version = "0.3.67" edition = "2021" homepage = "https://git.ghostchain.io/ghostchain" repository = "https://git.ghostchain.io/ghostchain/ghost-eye" diff --git a/src/components/wallet/mod.rs b/src/components/wallet/mod.rs index be0320f..070d5fa 100644 --- a/src/components/wallet/mod.rs +++ b/src/components/wallet/mod.rs @@ -185,7 +185,7 @@ impl Component for Wallet { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::BondPopup; }, - KeyCode::Char('I') => { + KeyCode::Char('O') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::PayeePopup; },