Skip to content

Commit

Permalink
removed empty pattern exemption
Browse files Browse the repository at this point in the history
  • Loading branch information
RLCorp committed Oct 1, 2024
1 parent 8fb60c2 commit 2da3311
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"correctness": {
"noVoidTypeReturn": "off",
"noUnsafeOptionalChaining": "off",
"noEmptyPattern": "off",
"noSwitchDeclarations": "off"
},
"suspicious": {
Expand Down
2 changes: 1 addition & 1 deletion src/store/examiner-records/examiner-records.reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const examinerRecordsReducer = createReducer(
cachedRecords: tests,
isLoading: false,
})),
on(LoadingExaminerRecords, (state: ExaminerRecordStateModel, {}) => ({
on(LoadingExaminerRecords, (state: ExaminerRecordStateModel) => ({
...state,
isLoading: true,
})),
Expand Down

0 comments on commit 2da3311

Please sign in to comment.