chore: new clippy warnings

This commit is contained in:
Greg Johnston 2024-04-01 14:35:42 -04:00
parent 40e1fd5024
commit b47f492a32
2 changed files with 2 additions and 2 deletions

View file

@ -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,
}

View file

@ -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]