Remove unnecessary map

This commit is contained in:
Marshall Bowers 2023-11-13 11:10:08 -05:00
parent 5b254b03df
commit 3654dd8da0

View file

@ -401,7 +401,7 @@ impl List {
v_stack()
.w_full()
.py_1()
.children(self.header.map(|header| header))
.children(self.header)
.child(list_content)
}
}