Skip to content

Commit

Permalink
Merge branch 'main' into ff-prod-deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
gpmayorga authored Sep 14, 2023
2 parents 86d3383 + 85036ce commit befc4d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default function LiquidityTransactionsSection({
: []
}, [chartData, dataColors, tooltips, pool.currency.symbol])

return (
return chartData?.length ? (
<PageSection
title={title}
titleAddition={
Expand Down Expand Up @@ -133,5 +133,5 @@ export default function LiquidityTransactionsSection({
<StackedBarChart data={chartData} names={dataNames} colors={dataColors} currency={pool.currency.symbol} />
)}
</PageSection>
)
) : null
}

0 comments on commit befc4d6

Please sign in to comment.