Skip to content

Commit

Permalink
removed unused eslint-disable
Browse files Browse the repository at this point in the history
  • Loading branch information
EskiMojo14 committed Jun 14, 2024
1 parent 8775743 commit 1ca1711
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/redux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ function globaliseSelectors<
} {
const result: Record<string, Selector<RootState>> = {};
for (const [key, selector] of Object.entries<Selector<State>>(selectors)) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
result[key] = (state) => selector(selectState(state));
}
return result as never;
Expand Down

0 comments on commit 1ca1711

Please sign in to comment.