sort symbols (#529)

This commit is contained in:
Daniel Chew 2023-01-25 14:24:47 +09:00 committed by GitHub
parent fe3816f69a
commit 16b7977179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -139,7 +139,10 @@ const MinPublishers = () => {
(mapping1, mapping2) =>
mapping2.products.length - mapping1.products.length
)[0]
.products.map((product) =>
.products.sort((product1, product2) =>
product1.metadata.symbol.localeCompare(product2.metadata.symbol)
)
.map((product) =>
product.priceAccounts.map((priceAccount) => {
minPublishersData.push({
symbol: product.metadata.symbol,