avoid duplication in hot keys for wallet tab

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2025-08-16 23:01:56 +03:00
parent b9c863e2ea
commit 682deadb48
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
name = "ghost-eye"
authors = ["str3tch <stretch@ghostchain.io>"]
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"

View File

@ -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;
},