diff --git a/leptos_reactive/src/runtime.rs b/leptos_reactive/src/runtime.rs index 08fb8baa0a..c01b8655b1 100644 --- a/leptos_reactive/src/runtime.rs +++ b/leptos_reactive/src/runtime.rs @@ -1489,7 +1489,7 @@ pub fn untrack_with_diagnostics(f: impl FnOnce() -> T) -> T { /// Allows running a future that has access to a given scope. #[pin_project] -pub struct ScopedFuture { +pub struct ScopedFuture { owner: Owner, #[pin] future: Fut, @@ -1521,3 +1521,5 @@ impl Future for ScopedFuture { } } } + +impl ScopedFuture {}