1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-08 15:48:08 +00:00

fix(core): correct a small typo in screen_update()

[no changelog]
This commit is contained in:
Roman Zeyde 2025-06-15 09:23:12 +03:00 committed by Roman Zeyde
parent 107960ebbe
commit 2a29e4ea47
2 changed files with 2 additions and 2 deletions

View File

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

View File

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