Remove random semicolons

This commit is contained in:
Gabe Kangas 2020-11-11 19:18:01 -08:00
parent 6cafb29a8f
commit 99cefa19c8
3 changed files with 3 additions and 4 deletions

View File

@ -77,7 +77,6 @@ export default function LogTable({ logs, pageSize }: Props) {
rowKey={(row) => row.time} rowKey={(row) => row.time}
pagination={{ pageSize: pageSize || 20 }} pagination={{ pageSize: pageSize || 20 }}
/> />
;
</div> </div>
); );
} }

View File

@ -38,7 +38,7 @@ export default function Logs() {
<a href={release.html_url}>{release.name}</a> <a href={release.html_url}>{release.name}</a>
</Title> </Title>
<Title level={5}>{new Date(release.created_at).toDateString()}</Title> <Title level={5}>{new Date(release.created_at).toDateString()}</Title>
<ReactMarkdown>{release.body}</ReactMarkdown>;<h3>Downloads</h3> <ReactMarkdown>{release.body}</ReactMarkdown><h3>Downloads</h3>
<AssetTable {...release.assets} /> <AssetTable {...release.assets} />
</div> </div>
); );
@ -68,6 +68,6 @@ function AssetTable(assets) {
}, },
]; ];
return <Table dataSource={data} columns={columns} rowKey="id" size="large" />; return <Table dataSource={data} columns={columns} rowKey="id" size="large" />
} }

View File

@ -127,7 +127,7 @@ export default function ViewersOverTime() {
<div className="chart-container"> <div className="chart-container">
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" /> <Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
</div> </div>
<Table dataSource={clients} columns={columns} />; <Table dataSource={clients} columns={columns} />
</div> </div>
); );
} }