remove unnecessary parens

This commit is contained in:
Greg Johnston 2023-08-25 16:49:26 -04:00
parent 9adae32847
commit 3f3ab1c3c8

View file

@ -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);
}
}