Skip to content

Commit 35c5008

Browse files
committed
fixed types
1 parent ed9ef96 commit 35c5008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reducers/currency-rates-reducer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const initialState = Immutable({
2323
currencies: Object.keys(RATES_MOCK)
2424
});
2525

26-
export default function reducer(state = initialState, action: FluxStandardAction<any> = {}) {
26+
export default function reducer(state = initialState, action: FluxStandardAction<any>) {
2727
switch (action.type) {
2828
case LOAD_CURRENCY_RATES:
2929
return state.merge({

0 commit comments

Comments
 (0)