Skip to content

Commit

Permalink
Fix broken types.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkambic committed Jun 5, 2020
1 parent 9eb7de4 commit 63bf9ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
SelectedFilters,
} from '../actions/selected_filters';

const initialState = null;
const initialState: SelectedFilters | null = null;

export function selectedFiltersReducer(
state = initialState,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ describe('state selectors', () => {
loading: false,
},
},
selectedFilters: null,
};

it('selects base path from state', () => {
Expand Down

0 comments on commit 63bf9ec

Please sign in to comment.