ebda47576d
Completely remove it for now to make the commit deltas clearer. We'll replace it with the new method at the end.
10 lines
337 B
JavaScript
10 lines
337 B
JavaScript
import { connect } from 'react-redux';
|
|
import ClaimList from './view';
|
|
import { SETTINGS } from 'lbry-redux';
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
|
|
|
const select = (state) => ({
|
|
searchInLanguage: makeSelectClientSetting(SETTINGS.SEARCH_IN_LANGUAGE)(state),
|
|
});
|
|
|
|
export default connect(select)(ClaimList);
|