0

Remove the chat client table from the viewers page since that all exists on the chat page now

This commit is contained in:
Gabe Kangas 2021-07-21 17:13:04 -07:00
parent 4a5badcd1f
commit 06793078f6

View File

@ -109,24 +109,6 @@ export default function ViewersOverTime() {
</Row> </Row>
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" /> <Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
{online && (
<div>
<Table dataSource={clients} columns={columns} rowKey={row => row.clientID} />
<p>
<Typography.Text type="secondary">
Visit the{' '}
<a
href="https://owncast.online/docs/viewers/?source=admin"
target="_blank"
rel="noopener noreferrer"
>
documentation
</a>{' '}
to configure additional details about your viewers.
</Typography.Text>{' '}
</p>
</div>
)}
</> </>
); );
} }