fix(display/mod.rs): remove "no device" check

This check is unnecessary, cargo will not build if fn update_ui is
undefined.
This commit is contained in:
oopsbagel
2025-06-12 01:04:29 -07:00
parent 241fb2789b
commit 95951c5c38

View File

@@ -25,6 +25,3 @@ pub enum DisplayState {
Paused,
WarningDetected,
}
#[cfg(not(any(feature = "orbic", feature = "tplink", feature = "wingtech",)))]
compile_error!("cannot compile for no device at all");