Small fix in allClaimListMine type.
This commit is contained in:
parent
e15bc0e8b8
commit
88ba769340
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