f1742eca25
This reverts commit 6d88d87ff2
.
11 lines
365 B
JavaScript
11 lines
365 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectUserVerifiedEmail } from 'lbryinc';
|
|
import { selectScrollStartingPosition } from 'redux/selectors/app';
|
|
import Router from './view';
|
|
|
|
const select = state => ({
|
|
currentScroll: selectScrollStartingPosition(state),
|
|
isAuthenticated: selectUserVerifiedEmail(state),
|
|
});
|
|
|
|
export default connect(select)(Router);
|