mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
chore: remove unused .clone() call in <Suspense/>
. (#486)
This commit is contained in:
parent
fe7aacb0c8
commit
b9f05f94ce
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ where
|
|||
let initial = {
|
||||
// no resources were read under this, so just return the child
|
||||
if context.pending_resources.get() == 0 {
|
||||
child.clone()
|
||||
child
|
||||
}
|
||||
// show the fallback, but also prepare to stream HTML
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue