From c7d0803164137ce82d9281ae362df4afc65a65aa Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Tue, 12 Sep 2023 12:47:47 -0700 Subject: [PATCH] chore(trading): make closed market table rows the correct height --- apps/trading/client-pages/markets/closed.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/trading/client-pages/markets/closed.tsx b/apps/trading/client-pages/markets/closed.tsx index 152585663..03b49b31f 100644 --- a/apps/trading/client-pages/markets/closed.tsx +++ b/apps/trading/client-pages/markets/closed.tsx @@ -267,6 +267,7 @@ const ClosedMarketsDataGrid = ({ getRowId={({ data }) => data.id} overlayNoRowsTemplate={error ? error.message : t('No markets')} components={components} + rowHeight={45} /> ); };