diff --git a/core/embed/rust/src/ui/model_tt/component/homescreen/mod.rs b/core/embed/rust/src/ui/model_tt/component/homescreen/mod.rs index e424d5fb40..a485caa7fe 100644 --- a/core/embed/rust/src/ui/model_tt/component/homescreen/mod.rs +++ b/core/embed/rust/src/ui/model_tt/component/homescreen/mod.rs @@ -173,6 +173,11 @@ impl Homescreen { self.paint_notification_only = true; ctx.request_paint(); } + Event::BLE(BLEEvent::PairingCanceled) => { + self.pairing = false; + self.pairing_dialog = None; + ctx.request_paint(); + } Event::BLE(BLEEvent::PairingRequest(data)) => { self.pairing = true;