We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-fallthrough
1 parent 8753095 commit 67337a0Copy full SHA for 67337a0
ui/frontend/eslint.config.mjs
@@ -60,7 +60,6 @@ export default tseslint.config(
60
...reactHooksPlugin.configs.recommended.rules,
61
62
// Disabled to upgrade to eslint 9
63
- 'no-fallthrough': 'off',
64
'@typescript-eslint/no-empty-object-type': 'off',
65
},
66
ui/frontend/reducers/notifications.ts
@@ -34,9 +34,11 @@ const slice = createSlice({
34
switch (action.payload) {
35
case Notification.DarkMode: {
36
state.seenDarkMode = true;
37
+ break;
38
}
39
case Notification.RustSurvey2023: {
40
state.seenRustSurvey2023 = true;
41
42
43
44
0 commit comments