Skip to content

Commit e4eacc9

Browse files
committed
linting
1 parent 420891d commit e4eacc9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/components/Context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { FixTypeLater } from '../types'
44
import type Subscription from '../utils/Subscription'
55

66
export interface ReactReduxContextValue<A extends Action = AnyAction> {
7-
store: Store<FixTypeLater, A>;
7+
store: Store<FixTypeLater, A>
88
subscription: Subscription
99
}
1010

src/components/Provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ interface ProviderProps<A extends Action = AnyAction> {
1010
/**
1111
* The single Redux store in your application.
1212
*/
13-
store: Store<FixTypeLater, A>;
13+
store: Store<FixTypeLater, A>
1414
/**
1515
* Optional context to be used internally in react-redux. Use React.createContext() to create a context to be used.
1616
* If this is used, generate own connect HOC by using connectAdvanced, supplying the same context provided to the
1717
* Provider. Initial value doesn't matter, as it is overwritten with the internal state of Provider.
1818
*/
19-
context?: Context<ReactReduxContextValue>;
19+
context?: Context<ReactReduxContextValue>
2020
children: ReactNode
2121
}
2222

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export type FixTypeLater = any;
1+
export type FixTypeLater = any

0 commit comments

Comments
 (0)