From 1fd6c9fab9e9686454b89c6cc9a170de18cdaeff Mon Sep 17 00:00:00 2001 From: Michael Feher Date: Wed, 22 Jan 2025 16:30:03 -0500 Subject: [PATCH] fix: remove active from SetSuspended --- ui/modal/model.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/modal/model.go b/ui/modal/model.go index 347dc608..112acc73 100644 --- a/ui/modal/model.go +++ b/ui/modal/model.go @@ -71,10 +71,8 @@ func (m *ViewModel) SetActive(active bool) { // SetSuspended sets the active state to false both infoModal and transactionModal, and sets suspended state to true, also for both modals. func (m *ViewModel) SetSuspended() { - m.infoModal.Active = false m.infoModal.Suspended = true m.infoModal.UpdateState() - m.transactionModal.Active = false m.transactionModal.Suspended = true m.transactionModal.UpdateState() }