mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
This commit is contained in:
parent
3b5e2d86fb
commit
7be65a37c6
1 changed files with 5 additions and 7 deletions
|
@ -1166,14 +1166,12 @@ where
|
|||
resolved.set(true);
|
||||
set_value.try_update(|n| *n = Some(res));
|
||||
set_loading.try_update(|n| *n = false);
|
||||
}
|
||||
|
||||
for suspense_context in
|
||||
suspense_contexts.borrow().iter()
|
||||
{
|
||||
suspense_context.decrement(
|
||||
serializable != ResourceSerialization::Local,
|
||||
);
|
||||
}
|
||||
for suspense_context in suspense_contexts.borrow().iter() {
|
||||
suspense_context.decrement(
|
||||
serializable != ResourceSerialization::Local,
|
||||
);
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue