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-empty
1 parent 1a3ce1a commit 7238c79Copy full SHA for 7238c79
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-empty': 'off',
64
'no-useless-escape': 'off',
65
'no-fallthrough': 'off',
66
'@typescript-eslint/no-empty-object-type': 'off',
ui/frontend/reducers/output/execute.ts
@@ -172,8 +172,7 @@ const slice = createSlice({
172
state.requestsInProgress -= 1;
173
})
174
.addCase(performExecute.rejected, (state, action) => {
175
- if (action.payload) {
176
- } else {
+ if (!action.payload) {
177
state.error = action.error.message;
178
}
179
0 commit comments