Skip to content

Commit 1198252

Browse files
committed
Fix cargo clippy
1 parent 35e29a7 commit 1198252

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app_ui/menu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use ledger_device_sdk::nbgl::{NbglGlyph, NbglHomeAndSettings};
2323

2424
pub fn ui_menu_main(_: &mut Comm) -> NbglHomeAndSettings {
2525
// Load glyph from 64x64 4bpp gif file with include_gif macro. Creates an NBGL compatible glyph.
26-
#[cfg(any(target_os = "apex_p"))]
26+
#[cfg(target_os = "apex_p")]
2727
const FERRIS: NbglGlyph = NbglGlyph::from_include(include_gif!("crab_48x48.png", NBGL));
2828
#[cfg(any(target_os = "stax", target_os = "flex"))]
2929
const FERRIS: NbglGlyph = NbglGlyph::from_include(include_gif!("crab_64x64.gif", NBGL));

0 commit comments

Comments
 (0)