mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
fix: update log debug to use get_untracked for logged in user to resolve client side error (#1834)
This commit is contained in:
parent
15f08aaa30
commit
a7a1559e01
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ pub fn App() -> impl IntoView {
|
|||
fetch_user_info.dispatch(());
|
||||
}
|
||||
|
||||
log::debug!("User is logged in: {}", logged_in.get());
|
||||
log::debug!("User is logged in: {}", logged_in.get_untracked());
|
||||
|
||||
// -- effects -- //
|
||||
|
||||
|
|
Loading…
Reference in a new issue