Skip to content

Commit 29a16f0

Browse files
authored
fix: type inference error in ui::radio (#18)
1 parent 58eeb8e commit 29a16f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/radio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ where
6969
for radio in &fs.radios {
7070
item_vec.push(ListItem::new(radio.name.as_str()));
7171
}
72-
let list = List::new(item_vec.as_ref())
72+
let list = List::new(item_vec)
7373
.block(
7474
Block::default()
7575
.borders(Borders::all())

0 commit comments

Comments
 (0)