From 2a29e4ea47e225d761b2c92b127a14e39647f49e Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sun, 15 Jun 2025 09:23:12 +0300 Subject: [PATCH] fix(core): correct a small typo in `screen_update()` [no changelog] --- core/embed/rust/src/ui/layout_bolt/mod.rs | 2 +- core/embed/rust/src/ui/layout_eckhart/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/rust/src/ui/layout_bolt/mod.rs b/core/embed/rust/src/ui/layout_bolt/mod.rs index 3892739039..5949dc4a23 100644 --- a/core/embed/rust/src/ui/layout_bolt/mod.rs +++ b/core/embed/rust/src/ui/layout_bolt/mod.rs @@ -84,7 +84,7 @@ impl CommonUI for UIBolt { let mut frame = ErrorScreen::new( "Update".into(), "Finishing firmware update".into(), - "Do not turn of your trezor".into(), + "Do not turn off your Trezor".into(), ); show(&mut frame, true); } diff --git a/core/embed/rust/src/ui/layout_eckhart/mod.rs b/core/embed/rust/src/ui/layout_eckhart/mod.rs index 90a52e68fb..f9f131c5e2 100644 --- a/core/embed/rust/src/ui/layout_eckhart/mod.rs +++ b/core/embed/rust/src/ui/layout_eckhart/mod.rs @@ -96,7 +96,7 @@ impl CommonUI for UIEckhart { let mut frame = ErrorScreen::new( "Update".into(), "Finishing firmware update".into(), - "Do not turn of your trezor".into(), + "Do not turn off your Trezor".into(), ); show(&mut frame, true); }