fix: adjust table height

This commit is contained in:
Maël Gangloff
2024-12-24 18:50:38 +01:00
parent 805d2d391c
commit d8aafdedad

View File

@@ -84,7 +84,6 @@ export function TrackedDomainTable() {
return <Table
style={{height: '80vh'}}
loading={total === undefined}
columns={columns}
dataSource={dataTable}
@@ -96,7 +95,6 @@ export function TrackedDomainTable() {
fetchData({page, itemsPerPage})
}
}}
{...(sm ? {scroll: {y: 'max-content'}} : {scroll: {y: 240}})}
scroll={{y: '60vh'}}
/>
}