diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs index 2cdb737507..a25f9c16eb 100644 --- a/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs +++ b/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs @@ -1,7 +1,7 @@ use crate::ui::{ component::{ swipe_detect::SwipeConfig, - text::paragraphs::{ParagraphSource, Paragraphs}, + text::paragraphs::{Checklist, ParagraphSource, Paragraphs}, Component, Event, EventCtx, FormattedText, PaginateFull, }, flow::Swipable, @@ -151,6 +151,7 @@ where pub trait AllowedTextContent: Component + PaginateFull {} impl AllowedTextContent for FormattedText {} impl<'a, T> AllowedTextContent for Paragraphs where T: ParagraphSource<'a> {} +impl<'a, T> AllowedTextContent for Checklist where T: ParagraphSource<'a> {} #[cfg(feature = "ui_debug")] impl crate::trace::Trace for TextScreen