Add ability to search through publishes. #7535
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ type State = {
|
|||
checkingPending: boolean,
|
||||
checkingReflecting: boolean,
|
||||
isFetchingAllClaimListMine: boolean,
|
||||
allClaimListMine: ?ClaimListResponse,
|
||||
allClaimListMine: Array<ChannelClaim | Claim>,
|
||||
};
|
||||
|
||||
const reducers = {};
|
||||
|
@ -112,7 +112,7 @@ const defaultState = {
|
|||
checkingPending: false,
|
||||
checkingReflecting: false,
|
||||
isFetchingAllClaimListMine: false,
|
||||
allClaimListMine: undefined,
|
||||
allClaimListMine: [],
|
||||
};
|
||||
|
||||
function handleClaimAction(state: State, action: any): State {
|
||||
|
|
Loading…
Add table
Reference in a new issue