d97a23b699
I believe it was just due to copy/pasting from another file and not renaming it.
16 lines
545 B
JavaScript
16 lines
545 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectMyChannelClaims } from 'lbry-redux';
|
|
import { selectActiveChannelClaim, selectIncognito } from 'redux/selectors/app';
|
|
import { doSetActiveChannel, doSetIncognito } from 'redux/actions/app';
|
|
import ChannelSelector from './view';
|
|
|
|
const select = (state) => ({
|
|
channels: selectMyChannelClaims(state),
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
|
incognito: selectIncognito(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doSetActiveChannel,
|
|
doSetIncognito,
|
|
})(ChannelSelector);
|