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

@ -43,7 +43,7 @@ macro_rules! transform_xy_unit {
}
impl<'a, T, E, A> TryFromEdn<'a, T> for $Enum<E, E::Unit, A>
where
T: EdnProvide<'a, bool> + EdnProvide<'a, A> + 'a,
T: EdnProvide<'a, E::Unit> + EdnProvide<'a, A> + 'a,
E: Output,
A: Render<E> + 'a,
{