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}
pagination={{ pageSize: pageSize || 20 }}
/>
;
</div>
);
}

View File

@ -38,7 +38,7 @@ export default function Logs() {
<a href={release.html_url}>{release.name}</a>
</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} />
</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">
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
</div>
<Table dataSource={clients} columns={columns} />;
<Table dataSource={clients} columns={columns} />
</div>
);
}