Skip to content

Commit fb87d33

Browse files
feat(insights): update Recently Added card to Featured
Co-Authored-By: Connor Prussin <[email protected]>
1 parent a5f46d7 commit fb87d33

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

apps/insights/src/components/PriceFeeds/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ArrowLineDown } from "@phosphor-icons/react/dist/ssr/ArrowLineDown";
22
import { ArrowSquareOut } from "@phosphor-icons/react/dist/ssr/ArrowSquareOut";
33
import { ArrowsOutSimple } from "@phosphor-icons/react/dist/ssr/ArrowsOutSimple";
44
import { ClockCountdown } from "@phosphor-icons/react/dist/ssr/ClockCountdown";
5-
import { StackPlus } from "@phosphor-icons/react/dist/ssr/StackPlus";
5+
import { Star } from "@phosphor-icons/react/dist/ssr/Star";
66
import { Badge } from "@pythnetwork/component-library/Badge";
77
import { Button } from "@pythnetwork/component-library/Button";
88
import {
@@ -50,7 +50,7 @@ export const PriceFeeds = async () => {
5050
].slice(0, 6);
5151
const featuredRecentlyAdded = filterFeeds(
5252
priceFeeds.activeFeeds,
53-
priceFeedsStaticConfig.featuredRecentlyAdded,
53+
priceFeedsStaticConfig.featuredFeeds,
5454
);
5555

5656
return (
@@ -149,8 +149,8 @@ const FeaturedFeeds = ({
149149
)}
150150
>
151151
<FeaturedFeedsCard
152-
title="Recently Added"
153-
icon={<StackPlus />}
152+
title="Featured"
153+
icon={<Star />}
154154
feeds={featuredRecentlyAdded}
155155
showPrices
156156
linkFeeds
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export const priceFeeds = {
22
updateFrequency: "400ms",
3-
featuredRecentlyAdded: [
4-
"Crypto.PYTH/USD",
5-
"FX.EUR/USD",
6-
"Equity.US.NFLX/USD",
7-
"Commodities.WTI1M",
8-
"Crypto.1INCH/USD",
9-
"Equity.US.META/USD",
3+
featuredFeeds: [
4+
"Crypto.ARC/USD",
5+
"Crypto.CDXUSD/USD",
6+
"Equity.GB.CSPX/USD",
7+
"Crypto.MSUSD/USD",
8+
"Crypto.WSTHYPE/STHYPE.RR",
9+
"Crypto.YNETHX/WETH.RR",
1010
],
1111
featuredComingSoon: ["Rates.US1Y"],
1212
};

0 commit comments

Comments
 (0)