Default to "ALL" in stage filter (#455)

* Unset 'FUNDING_REQUIRED' stage filter to default to ALL

* removed unused import
This commit is contained in:
Daniel Ternyak 2019-06-11 18:55:36 -05:00 committed by GitHub
parent 1dcade02c1
commit ec8dd4bfa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import {
LoadableProposalPage,
Moreable,
} from 'types';
import { PROPOSAL_SORT, PROPOSAL_STAGE } from 'api/constants';
import { PROPOSAL_SORT } from 'api/constants';
export interface ProposalDetail extends Proposal {
isRequestingPayout: boolean;
@ -62,7 +62,7 @@ export const INITIAL_STATE: ProposalState = {
sort: PROPOSAL_SORT.NEWEST,
filters: {
category: [],
stage: [PROPOSAL_STAGE.FUNDING_REQUIRED],
stage: [],
},
items: [],
hasFetched: false,