Skip to content

Commit b294b44

Browse files
committed
cleanup unused classnames
1 parent d2b7826 commit b294b44

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/site/components/Downloads/DownloadReleasesTable/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const DownloadReleasesTable: FC = () => {
1919
const t = useTranslations();
2020

2121
return (
22-
<table id="tbVersions" className="download-table full-width">
22+
<table id="tbVersions">
2323
<thead>
2424
<tr>
2525
<th>{t('components.downloadReleasesTable.version')}</th>
@@ -47,7 +47,7 @@ const DownloadReleasesTable: FC = () => {
4747
{release.status === 'End-of-life' ? ' (EoL)' : ''}
4848
</Badge>
4949
</td>
50-
<td className="download-table-last">
50+
<td>
5151
<DetailsButton data={release} />
5252
</td>
5353
</tr>

apps/site/components/EOL/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const EOLTable: FC = async () => {
4444
vulnerabilities={vulnerabilities[release.major]}
4545
/>
4646
</td>
47-
<td className="download-table-last">
47+
<td>
4848
<DetailsButton
4949
data={{
5050
release: release,

0 commit comments

Comments
 (0)