d97a23b699
I believe it was just due to copy/pasting from another file and not renaming it.
11 lines
445 B
JavaScript
11 lines
445 B
JavaScript
import { connect } from 'react-redux';
|
|
import { SETTINGS } from 'lbry-redux';
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
|
import NagContinueFirstRun from './view';
|
|
|
|
const select = (state) => ({
|
|
followingAcknowledged: makeSelectClientSetting(SETTINGS.FOLLOWING_ACKNOWLEDGED)(state),
|
|
firstRunStarted: makeSelectClientSetting(SETTINGS.FIRST_RUN_STARTED)(state),
|
|
});
|
|
|
|
export default connect(select)(NagContinueFirstRun);
|