fix: double negative causing windows to never become ready

This commit is contained in:
Hojjat 2026-04-01 16:55:17 -06:00 committed by Ashley Wulber
parent 84f3210819
commit 42e3afb568

View file

@ -85,7 +85,7 @@ where
style,
ready: true,
a11y_ready: !cfg!(not(feature = "a11y")),
a11y_ready: cfg!(not(feature = "a11y")),
}
}