Skip to content

Commit 55c3ebb

Browse files
committed
clippy fix
1 parent b9acd71 commit 55c3ebb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/oxc_linter/src/rules/eslint/no_fallthrough.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ fn get_switch_semantic_cases(
471471
(cfg_ids, conds, exit)
472472
} else {
473473
if has_default {
474-
cfg_ids.push(target)
474+
cfg_ids.push(target);
475475
}
476476
(cfg_ids, conds, Some(target))
477477
}

0 commit comments

Comments
 (0)