diff --git a/reactive_graph/src/actions/action.rs b/reactive_graph/src/actions/action.rs index 4341cf4b80..504f8aee40 100644 --- a/reactive_graph/src/actions/action.rs +++ b/reactive_graph/src/actions/action.rs @@ -715,7 +715,7 @@ where pub fn new_local(action_fn: F) -> Self where F: Fn(&I) -> Fu + 'static, - Fu: Future + Send + 'static, + Fu: Future + 'static, { Self { inner: ArenaItem::new_local(ArcAction::new_unsync(action_fn)),