diff --git a/crates/ui2/src/components/workspace.rs b/crates/ui2/src/components/workspace.rs index 8b4329363a..4b20aa165e 100644 --- a/crates/ui2/src/components/workspace.rs +++ b/crates/ui2/src/components/workspace.rs @@ -183,7 +183,12 @@ impl WorkspaceElement { .child(StatusBar::new()) .child(Toast::new( ToastOrigin::Bottom, - |_, _| vec![Label::new("label").into_any()], + |_, _| vec![Label::new("A toast").into_any()], + Box::new(()), + )) + .child(Toast::new( + ToastOrigin::BottomRight, + |_, _| vec![Label::new("Another toast").into_any()], Box::new(()), )) }