fix upload crash (#7399)

This commit is contained in:
jessopb 2022-01-04 10:13:15 -05:00 committed by GitHub
parent cedfd3e32c
commit ba2caf4eb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,7 @@ export const selectActiveChannelStakedLevel = createSelector(
}
const uri = activeChannelClaim.permanent_url;
const stakedLevel = selectTotalStakedAmountForChannelUri(state, uri)(state);
const stakedLevel = selectTotalStakedAmountForChannelUri(state, uri);
return stakedLevel;
}