fix: correct wasm target condition (#1018)

This commit is contained in:
June 2024-05-08 20:10:09 -06:00 committed by GitHub
parent 0ffba5c648
commit 6ff42c1a6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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