mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Fix fullstack desktop launch (#2581)
This commit is contained in:
parent
2c20d3dc5e
commit
e1ea213d05
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ pub fn launch(
|
|||
#[allow(unused)]
|
||||
pub fn launch(
|
||||
root: fn() -> Element,
|
||||
contexts: Vec<Box<dyn Fn() -> Box<dyn Any> + Send + Sync>>,
|
||||
contexts: Vec<Box<dyn Fn() -> Box<dyn Any + Send + Sync> + Send + Sync>>,
|
||||
platform_config: Config,
|
||||
) -> ! {
|
||||
let contexts = Arc::new(contexts);
|
||||
|
|
Loading…
Reference in a new issue