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() }