Fix cfg(wasm) to correctly target wasm

This commit is contained in:
itsjunetime 2024-05-08 14:50:04 -06:00
parent 0ffba5c648
commit 2bc6af3d2c

View file

@ -15,7 +15,7 @@ impl Utils {
{ {
Ok("windows") Ok("windows")
} }
#[cfg(wasm)] #[cfg(target_family = "wasm")]
{ {
Ok("wasm") Ok("wasm")
} }