bridge_ui: stats page null data fix

This commit is contained in:
Kevin Peters 2022-03-16 16:48:59 +00:00 committed by Evan Gray
parent f374047d0b
commit 02a2397479
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ const StatsRoot: React.FC<any> = () => {
{!tvl.isFetching ? (
<MuiReactTable
columns={tvlColumns}
data={tvl.data}
data={tvl.data || []}
skipPageReset={false}
initialState={{ sortBy: [{ id: "totalValue", desc: true }] }}
/>