Skip to content

Commit 8e75241

Browse files
authored
fix: Use div over td (#335)
1 parent 8f99afd commit 8e75241

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ function EmptyResult({
132132
)
133133

134134
return (
135-
<tr className='seam-supported-device-table-content-message-row'>
136-
<td colSpan={6}>
135+
<div className='seam-supported-device-table-content-message-row'>
136+
<div>
137137
<div className='seam-supported-device-table-content-message'>
138138
{filterValue.length === 0 ? <p>{t.noneFound}</p> : noMatchingRows}
139139
</div>
140-
</td>
141-
</tr>
140+
</div>
141+
</div>
142142
)
143143
}
144144

0 commit comments

Comments
 (0)