mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
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);
|