diff --git a/crates/ui2/src/components/workspace.rs b/crates/ui2/src/components/workspace.rs index bcd7d406732f6f914f12ae20728c145445c72f2b..6db5345aa81af485c12c15a8102e66c729b2ea29 100644 --- a/crates/ui2/src/components/workspace.rs +++ b/crates/ui2/src/components/workspace.rs @@ -268,10 +268,10 @@ impl Workspace { .child(Toast::new(ToastOrigin::Bottom).child(Label::new("A toast"))) // .child(Toast::new(ToastOrigin::BottomRight).child(Label::new("Another toast"))) .child(NotificationToast::new( - "A notification", - "This is a notification", - Button::new("Primary"), - )) + "Can't pull changes from origin", + "Your local branch is behind the remote branch. Please pull the latest changes before pushing.", + Button::new("Stash & Switch").variant(ButtonVariant::Filled), + ).secondary_action(Button::new("Cancel"))) } }