fix state provider types

This commit is contained in:
🪞👃🪞 2025-01-13 23:52:24 +01:00
parent 57fda5c7ad
commit 08a6716bb7
4 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ impl<E: Output, A: Content<E>> Content<E> for Align<E, A> {
}
impl<'a, T, E, A> TryFromEdn<'a, T> for Align<E, A>
where
T: EdnProvide<'a, bool> + EdnProvide<'a, A> + 'a,
T: EdnProvide<'a, A> + 'a,
E: Output,
A: Render<E> + 'a,
{