@@ -87,7 +87,7 @@ export const PriceFeeds = async () => {
87
87
< FeaturedFeeds
88
88
allComingSoon = { priceFeeds . comingSoon }
89
89
featuredComingSoon = { featuredComingSoon . slice ( 0 , 5 ) }
90
- featuredRecentlyAdded = { featuredFeeds . slice ( 0 , 5 ) }
90
+ featuredFeeds = { featuredFeeds . slice ( 0 , 5 ) }
91
91
/>
92
92
< PriceFeedsCard
93
93
id = { PRICE_FEEDS_ANCHOR }
@@ -120,7 +120,7 @@ export const PriceFeeds = async () => {
120
120
< FeaturedFeeds
121
121
allComingSoon = { priceFeeds . comingSoon }
122
122
featuredComingSoon = { featuredComingSoon }
123
- featuredRecentlyAdded = { featuredFeeds }
123
+ featuredFeeds = { featuredFeeds }
124
124
/>
125
125
</ UnstyledTabPanel >
126
126
</ UnstyledTabs >
@@ -129,20 +129,20 @@ export const PriceFeeds = async () => {
129
129
} ;
130
130
131
131
type FeaturedFeedsProps = {
132
- featuredRecentlyAdded : FeaturedFeed [ ] ;
132
+ featuredFeeds : FeaturedFeed [ ] ;
133
133
featuredComingSoon : FeaturedFeed [ ] ;
134
134
allComingSoon : { symbol : string } [ ] ;
135
135
} ;
136
136
137
137
const FeaturedFeeds = ( {
138
- featuredRecentlyAdded ,
138
+ featuredFeeds ,
139
139
featuredComingSoon,
140
140
allComingSoon,
141
141
} : FeaturedFeedsProps ) => (
142
142
< >
143
143
< YesterdaysPricesProvider
144
144
feeds = { Object . fromEntries (
145
- featuredRecentlyAdded . map ( ( { symbol, product } ) => [
145
+ featuredFeeds . map ( ( { symbol, product } ) => [
146
146
symbol ,
147
147
product . price_account ,
148
148
] ) ,
@@ -151,7 +151,7 @@ const FeaturedFeeds = ({
151
151
< FeaturedFeedsCard
152
152
title = "Featured"
153
153
icon = { < Star /> }
154
- feeds = { featuredRecentlyAdded }
154
+ feeds = { featuredFeeds }
155
155
showPrices
156
156
linkFeeds
157
157
/>
0 commit comments