Skip to content

Commit

Permalink
fix chart
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Oct 13, 2024
1 parent 77281d0 commit 759fb58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/sale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export const getCorePriceAt = (now: number, saleInfo: SaleInfo) => {
export const isNewPricing = (now: number, network: NetworkType): boolean => {
return (
(network == NetworkType.KUSAMA && now >= 485639) ||
(network == NetworkType.ROCOCO && now >= 1796462)
(network == NetworkType.ROCOCO && now >= 1796462) ||
network === NetworkType.POLKADOT ||
network === NetworkType.PASEO
);
};

0 comments on commit 759fb58

Please sign in to comment.