9faca8da2b
i18n messages, handle error case max copy copy update @lbry/components and tweak range styles sigfigs error catching and cleanup apply review changes style table and unlock button handle tip errors separate fileDescription from fileDetails make expandable cards ui tweaks tweak copy, style, behavior remove unused strings forgot an important line
9 lines
358 B
JavaScript
9 lines
358 B
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectClaimForUri, makeSelectPendingAmountByUri } from 'lbry-redux';
|
|
import FileSubtitle from './view';
|
|
|
|
const select = (state, props) => ({
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
pendingAmount: makeSelectPendingAmountByUri(props.uri)(state),
|
|
});
|
|
export default connect(select)(FileSubtitle);
|