From 4bd99a41e54b788c9e7db43fc63c5564ad9b4c26 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Tue, 28 May 2024 07:08:32 -0400 Subject: [PATCH] missing dry_resolve on Static --- tachys/src/view/static_types.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tachys/src/view/static_types.rs b/tachys/src/view/static_types.rs index 8238ef0d0..adabf4e3d 100644 --- a/tachys/src/view/static_types.rs +++ b/tachys/src/view/static_types.rs @@ -166,6 +166,8 @@ where const MIN_LENGTH: usize = V.len(); + fn dry_resolve(&mut self) {} + fn resolve(self) -> futures::future::Ready { futures::future::ready(self) }