diff --git a/src/app/components/points/components/points-table/points-table.tsx b/src/app/components/points/components/points-table/points-table.tsx index 011c5909..6831e6da 100644 --- a/src/app/components/points/components/points-table/points-table.tsx +++ b/src/app/components/points/components/points-table/points-table.tsx @@ -11,7 +11,7 @@ interface PointsTableProps { } export function PointsTable({ items }: PointsTableProps): React.JSX.Element { - const dynamicHeight = items ? items.length * 65 + 20 : 20; + const dynamicHeight = items ? items.length * 59 + 20 : 20; return ( diff --git a/src/app/components/proof-of-reserve/components/merchant-table/merchant-details-table.tsx b/src/app/components/proof-of-reserve/components/merchant-table/merchant-details-table.tsx index 0609d692..3d10feb6 100644 --- a/src/app/components/proof-of-reserve/components/merchant-table/merchant-details-table.tsx +++ b/src/app/components/proof-of-reserve/components/merchant-table/merchant-details-table.tsx @@ -11,7 +11,7 @@ interface MerchantDetailsTableProps { } export function MerchantDetailsTable({ items }: MerchantDetailsTableProps): React.JSX.Element { - const dynamicHeight = items ? items.length * 65 + 20 : 20; + const dynamicHeight = items ? items.length * 59 + 20 : 20; return ( diff --git a/src/app/components/protocol-history-table/protocol-history-table.tsx b/src/app/components/protocol-history-table/protocol-history-table.tsx index dbbbb505..1261c1ff 100644 --- a/src/app/components/protocol-history-table/protocol-history-table.tsx +++ b/src/app/components/protocol-history-table/protocol-history-table.tsx @@ -10,7 +10,7 @@ interface ProtocolHistoryTableProps { } export function ProtocolHistoryTable({ items }: ProtocolHistoryTableProps): React.JSX.Element { - const dynamicHeight = items ? items.length * 65 + 20 : 20; + const dynamicHeight = items ? items.length * 59 + 20 : 20; return (