Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
esamattis committed Mar 23, 2021
1 parent 50df0a4 commit 03a990c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/immer-reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ interface Reducer<State> {
* @param reducers two or more reducer
*/
export function composeReducers<State>(
...reducers: (Reducer<State | undefined>)[]
...reducers: Reducer<State | undefined>[]
): Reducer<State> {
return (state: any, action: any) => {
return (
Expand Down

0 comments on commit 03a990c

Please sign in to comment.