Skip to content

Commit

Permalink
Merge pull request #3192 from OlympusDAO/develop
Browse files Browse the repository at this point in the history
Release: OHM market value
  • Loading branch information
brightiron authored Aug 29, 2024
2 parents 790475c + 54f9d6f commit 5b84a15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const TreasuryAssetsTable = ({
console.debug(`${chartName}: rebuilding by date token summary`);

// Filter out dust
const nonDustRecords = tokenRecordResults.filter(value => parseFloat(value.valueExcludingOhm) > 1);
const nonDustRecords = tokenRecordResults.filter(value => parseFloat(value.value) > 1);

// We do the filtering of isLiquid client-side. Doing it in the GraphQL query results in incorrect data being spliced into the TreasuryAssetsGraph. Very weird.
const filteredRecords = isLiquidBackingActive
Expand Down

0 comments on commit 5b84a15

Please sign in to comment.