mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-22 16:49:22 -05:00
fixed a error for a match on a non exhaustive enum
This commit is contained in:
parent
cef0e68121
commit
6d0e946b5a
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ impl From<web_sys::NotificationPermission> for NotificationPermission {
|
|||
web_sys::NotificationPermission::Default => Self::Default,
|
||||
web_sys::NotificationPermission::Granted => Self::Granted,
|
||||
web_sys::NotificationPermission::Denied => Self::Denied,
|
||||
web_sys::NotificationPermission::__Nonexhaustive => Self::Default,
|
||||
_ => Self::Default,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue