mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
remove unnecessary parens
This commit is contained in:
parent
9adae32847
commit
3f3ab1c3c8
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ where
|
|||
if is_first_run(&first_run, &suspense_context) {
|
||||
let has_local_only = suspense_context.has_local_only()
|
||||
|| cfg!(feature = "csr");
|
||||
if (!has_local_only || child_runs.get() > 0) {
|
||||
if !has_local_only || child_runs.get() > 0 {
|
||||
first_run.set(false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue