mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
chore: new clippy warnings
This commit is contained in:
parent
40e1fd5024
commit
b47f492a32
2 changed files with 2 additions and 2 deletions
|
@ -124,6 +124,7 @@ impl EmailAddress {
|
|||
#[derive(Clone)]
|
||||
pub struct CurrentUser {
|
||||
pub email: EmailAddress,
|
||||
#[allow(dead_code)] // possibly a lint regression, this is used at line 65
|
||||
pub token: Uuid,
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
use leptos_reactive::{
|
||||
create_isomorphic_effect, create_runtime, create_signal, signal_prelude::*,
|
||||
SignalGetUntracked, SignalSetUntracked,
|
||||
create_isomorphic_effect, create_runtime, signal_prelude::*,
|
||||
};
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Reference in a new issue