فهرست منبع

fix the bounds on fullstack props

Evan Almloff 1 سال پیش
والد
کامیت
d20422bb0f
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/dioxus/src/launch.rs

+ 1 - 1
packages/dioxus/src/launch.rs

@@ -31,7 +31,7 @@ impl LaunchBuilder {
     /// Inject state into the root component's context that is created on the thread that the app is launched on.
     pub fn context_provider(mut self, state: impl Fn() -> Box<dyn Any> + Send + Sync + 'static) -> Self {
         self.contexts
-            .push(Box::new(state) as Box<dyn Fn() -> Box<dyn Any> + Send>);
+            .push(Box::new(state) as Box<dyn Fn() -> Box<dyn Any> + Send + Sync>);
         self
     }