We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3816f commit 16b7977Copy full SHA for 16b7977
governance/xc-admin/packages/xc-admin-frontend/components/tabs/MinPublishers.tsx
@@ -139,7 +139,10 @@ const MinPublishers = () => {
139
(mapping1, mapping2) =>
140
mapping2.products.length - mapping1.products.length
141
)[0]
142
- .products.map((product) =>
+ .products.sort((product1, product2) =>
143
+ product1.metadata.symbol.localeCompare(product2.metadata.symbol)
144
+ )
145
+ .map((product) =>
146
product.priceAccounts.map((priceAccount) => {
147
minPublishersData.push({
148
symbol: product.metadata.symbol,
0 commit comments