Skip to content

Commit

Permalink
chore: new clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Apr 1, 2024
1 parent 40e1fd5 commit b47f492
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down
3 changes: 1 addition & 2 deletions leptos_reactive/tests/untracked.rs
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit b47f492

Please sign in to comment.