What changed, and why it matters
This is a one-line Rust code cleanup that removes two unused color imports (GREY_LIGHT and an extra comma) to silence a Clippy compiler warning. It does not change any program behavior, user interface, or security logic.
No security action needed. This is a routine code-quality fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies a single import statement in core/embed/rust/src/ui/layout_eckhart/ui_bootloader.rs, removing the unused imports GREY_LIGHT and adjusting the import list. This is a pure lint fix with no functional code changes.
Changed components
core/embed/rust/src/ui/layout_eckhart/ui_bootloader.rsInspect captured patch +1 / −1
diff --git a/core/embed/rust/src/ui/layout_eckhart/ui_bootloader.rs b/core/embed/rust/src/ui/layout_eckhart/ui_bootloader.rs
index 73a2a000..a36d9ac0 100644
--- a/core/embed/rust/src/ui/layout_eckhart/ui_bootloader.rs
+++ b/core/embed/rust/src/ui/layout_eckhart/ui_bootloader.rs
@@ -25,7 +25,7 @@ use super::{
button_cancel, button_confirm, button_default, button_wipe_confirm, BLD_BG, BLD_FG,
TEXT_FW_FINGERPRINT, TEXT_WARNING, WELCOME_COLOR,
},
- BLACK, BLUE, GREEN_LIGHT, GREY, GREY_LIGHT, ICON_CHECKMARK, ICON_CROSS, RED, TEXT_NORMAL,
+ BLACK, BLUE, GREEN_LIGHT, GREY, ICON_CHECKMARK, ICON_CROSS, RED, TEXT_NORMAL,
TEXT_SMALL_GREY, WHITE,
},
UIEckhart, CANCEL_MESSAGE, WAIT_FOR_RESTART_MESSAGE, WAIT_MESSAGE,
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.