diff --git a/ui/component/fileSubtitle/view.jsx b/ui/component/fileSubtitle/view.jsx
index 91e1ae802..2c80c0539 100644
--- a/ui/component/fileSubtitle/view.jsx
+++ b/ui/component/fileSubtitle/view.jsx
@@ -8,21 +8,18 @@ type Props = {
uri: string,
livestream?: boolean,
activeViewers?: number,
- stateOfViewers: string,
+ isLive?: boolean,
};
function FileSubtitle(props: Props) {
- const { uri, livestream = false, activeViewers = 0, stateOfViewers } = props;
+ const { uri, livestream = false, activeViewers, isLive = false } = props;
return (
{livestream ? {__('Right now')} : }
- {livestream ? (
- {__('%viewer_count% currently %viewer_state%', { viewer_count: activeViewers, viewer_state: stateOfViewers })}
- ) : (
-
- )}
+
+
diff --git a/ui/component/fileTitleSection/view.jsx b/ui/component/fileTitleSection/view.jsx
index 989fc0078..0d00b9a67 100644
--- a/ui/component/fileTitleSection/view.jsx
+++ b/ui/component/fileTitleSection/view.jsx
@@ -20,12 +20,12 @@ type Props = {
nsfw: boolean,
isNsfwBlocked: boolean,
livestream?: boolean,
+ isLive?: boolean,
activeViewers?: number,
- stateOfViewers: string,
};
function FileTitleSection(props: Props) {
- const { title, uri, nsfw, isNsfwBlocked, livestream = false, activeViewers, stateOfViewers } = props;
+ const { title, uri, nsfw, isNsfwBlocked, livestream = false, isLive = false, activeViewers } = props;
const [hasAcknowledgedSec, setHasAcknowledgedSec] = usePersistedState('sec-nag', false);
return (
@@ -35,9 +35,7 @@ function FileTitleSection(props: Props) {
@@ -59,12 +57,7 @@ function FileTitleSection(props: Props) {
body={