Hi, I was trying to use this crate but ran into this issue when compiling:
error[E0599]: no variant or associated item named __Nonexhaustive found for enum web_sys::NotificationPermission in the current scope
--> /home/francis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/leptos-use-0.11.4/src/use_web_notification.rs:484:46
|
484 | web_sys::NotificationPermission::__Nonexhaustive => Self::Default,
| ^^^^^^^^^^^^^^^ variant or associated item not found in NotificationPermission
Updating the leptos-use dependency to 0.12.0 fixes it.
Hi, I was trying to use this crate but ran into this issue when compiling:
error[E0599]: no variant or associated item named
__Nonexhaustive
found for enumweb_sys::NotificationPermission
in the current scope --> /home/francis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/leptos-use-0.11.4/src/use_web_notification.rs:484:46 | 484 | web_sys::NotificationPermission::__Nonexhaustive => Self::Default, | ^^^^^^^^^^^^^^^ variant or associated item not found inNotificationPermission
Updating the
leptos-use
dependency to0.12.0
fixes it.