diff --git a/static/app-strings.json b/static/app-strings.json index 570ee0d25..071b3d5b9 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1480,6 +1480,5 @@ "Español": "Español", "Türkçe": "Türkçe", "Česky": "Česky", - "LBRY LATAM": "LBRY LATAM", "--end--": "--end--" } diff --git a/ui/component/autoplayCountdown/view.jsx b/ui/component/autoplayCountdown/view.jsx index 3172a3c18..4ecef5a37 100644 --- a/ui/component/autoplayCountdown/view.jsx +++ b/ui/component/autoplayCountdown/view.jsx @@ -15,7 +15,7 @@ type Props = { nextRecommendedClaim: ?StreamClaim, nextRecommendedUri: string, isFloating: boolean, - doSetPlayingUri: (string | null) => void, + doSetPlayingUri: ({ uri: ?string }) => void, doPlayUri: string => void, modal: { id: string, modalProps: {} }, }; @@ -50,12 +50,12 @@ function AutoplayCountdown(props: Props) { if (!isFloating) { if (navigateUrl) { push(navigateUrl); - doSetPlayingUri(nextRecommendedUri); + doSetPlayingUri({ uri: nextRecommendedUri }); doPlayUri(nextRecommendedUri); } } else { if (nextRecommendedUri) { - doSetPlayingUri(nextRecommendedUri); + doSetPlayingUri({ uri: nextRecommendedUri }); doPlayUri(nextRecommendedUri); } } diff --git a/ui/scss/component/_table.scss b/ui/scss/component/_table.scss index 7ecb87061..ee63e8615 100644 --- a/ui/scss/component/_table.scss +++ b/ui/scss/component/_table.scss @@ -178,19 +178,6 @@ th { .table--details { font-size: var(--font-small); } -.table--file-details { - @extend .table--details; - margin-top: var(--spacing-m); - - td:nth-of-type(1) { - width: 25%; - } - - td:nth-of-type(2) { - width: 75%; - text-align: right; - } -} .table--lbc-details { @extend .table--details;