Fix stakedLevel looking looking for wrong prop
This commit is contained in:
parent
5d1e6a8f7c
commit
e94f66a5fe
1 changed files with 10 additions and 5 deletions
|
@ -2,10 +2,15 @@ import { connect } from 'react-redux';
|
|||
import { selectStakedLevelForChannelUri, selectClaimForUri, selectMyClaimIdsRaw } from 'redux/selectors/claims';
|
||||
import LivestreamComment from './view';
|
||||
|
||||
const select = (state, props) => ({
|
||||
claim: selectClaimForUri(state, props.uri),
|
||||
stakedLevel: selectStakedLevelForChannelUri(state, props.authorUri),
|
||||
myChannelIds: selectMyClaimIdsRaw(state),
|
||||
});
|
||||
const select = (state, props) => {
|
||||
const { uri, comment } = props;
|
||||
const { channel_url: authorUri } = comment;
|
||||
|
||||
return {
|
||||
claim: selectClaimForUri(state, uri),
|
||||
stakedLevel: selectStakedLevelForChannelUri(state, authorUri),
|
||||
myChannelIds: selectMyClaimIdsRaw(state),
|
||||
};
|
||||
};
|
||||
|
||||
export default connect(select)(LivestreamComment);
|
||||
|
|
Loading…
Reference in a new issue