diff --git a/ui/component/selectThumbnail/view.jsx b/ui/component/selectThumbnail/view.jsx
index 0fb577e20..65cbe5e6f 100644
--- a/ui/component/selectThumbnail/view.jsx
+++ b/ui/component/selectThumbnail/view.jsx
@@ -68,10 +68,10 @@ class SelectThumbnail extends React.PureComponent
{
const actualFilePath = filePath || downloadPath;
let isSupportedVideo = false;
- if (typeof filePath === 'string') {
+ if (typeof actualFilePath === 'string') {
isSupportedVideo = Lbry.getMediaType(null, actualFilePath) === 'video';
- } else if (filePath && filePath.type) {
- isSupportedVideo = filePath.type.split('/')[0] === 'video';
+ } else if (actualFilePath && actualFilePath.type) {
+ isSupportedVideo = actualFilePath.type.split('/')[0] === 'video';
}
let thumbnailSrc;
diff --git a/ui/component/supportsLiquidate/index.js b/ui/component/supportsLiquidate/index.js
index 02561640e..e2bf8ec90 100644
--- a/ui/component/supportsLiquidate/index.js
+++ b/ui/component/supportsLiquidate/index.js
@@ -8,7 +8,6 @@ import {
makeSelectMetadataForUri,
makeSelectClaimForUri,
doSupportAbandonForClaim,
- doFetchClaimListMine,
selectAbandonClaimSupportError,
} from 'lbry-redux';
import SupportsLiquidate from './view';
@@ -27,7 +26,6 @@ const select = (state, props) => ({
const perform = dispatch => ({
abandonSupportForClaim: (claimId, type, keep, preview) =>
dispatch(doSupportAbandonForClaim(claimId, type, keep, preview)),
- fetchClaimListMine: () => dispatch(doFetchClaimListMine()),
});
export default connect(select, perform)(SupportsLiquidate);
diff --git a/ui/component/transactionListTable/internal/txo-list-item.jsx b/ui/component/transactionListTable/internal/txo-list-item.jsx
index c36eeadee..a53b9b40a 100644
--- a/ui/component/transactionListTable/internal/txo-list-item.jsx
+++ b/ui/component/transactionListTable/internal/txo-list-item.jsx
@@ -7,7 +7,7 @@ import DateTime from 'component/dateTime';
import Button from 'component/button';
import Spinner from 'component/spinner';
import { toCapitalCase } from 'util/string';
-import { buildURI, parseURI, TXO_LIST as TXO, TXO_ABANDON_STATES as TXO_STATES } from 'lbry-redux';
+import { buildURI, parseURI, TXO_LIST as TXO, ABANDON_STATES } from 'lbry-redux';
type Props = {
txo: Txo,
@@ -25,20 +25,20 @@ type State = {
class TxoListItem extends React.PureComponent {
constructor() {
super();
- this.state = { abandonState: TXO_STATES.READY };
+ this.state = { abandonState: ABANDON_STATES.READY };
(this: any).abandonClaim = this.abandonClaim.bind(this);
(this: any).getLink = this.getLink.bind(this);
}
getLink(type: string) {
const { abandonState } = this.state;
- if (this.state.abandonState === TXO_STATES.PENDING) {
+ if (this.state.abandonState === ABANDON_STATES.PENDING) {
return ;
}
if (type === TXO.SUPPORT) {
return (
+ }
+ isBodyList
+ body={
+