diff --git a/crates/storybook/src/gpui3/taffy.rs b/crates/storybook/src/gpui3/taffy.rs index b11cbd08ff..1efb4e6946 100644 --- a/crates/storybook/src/gpui3/taffy.rs +++ b/crates/storybook/src/gpui3/taffy.rs @@ -28,7 +28,7 @@ impl TaffyLayoutEngine { } pub fn layout(&mut self, id: LayoutId) -> Result { - todo!() + Ok(self.0.layout(id).map(Into::into)?) } }