chore: remove unnecessary bound

This commit is contained in:
Ashley Wulber 2026-05-06 11:59:36 -04:00 committed by Ashley Wulber
parent 40792f21de
commit 90ac265ee0

View file

@ -81,7 +81,7 @@ pub enum Action {
}
#[cfg(feature = "winit")]
pub fn surface_task<M: Send + Sync + 'static>(action: Action) -> Task<crate::Action<M>> {
pub fn surface_task<M: Send + 'static>(action: Action) -> Task<crate::Action<M>> {
crate::task::message(crate::Action::Cosmic(crate::app::Action::Surface(action)))
}