File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
apps/insights/src/components Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ export const ResolvedPriceComponentsCard = <
187187 }
188188
189189 case "status" : {
190- if ( a . status === undefined || b . status === undefined ) {
190+ if ( a . status === undefined || b . status === undefined ) {
191191 return 0 ;
192192 }
193193 const resultByStatus = b . status - a . status ;
Original file line number Diff line number Diff line change @@ -90,14 +90,14 @@ const ResolvedPublishersCard = ({
9090
9191type PublishersCardImplProps =
9292 | { isLoading : true }
93- | ( Omit < ResolvedPublishersCardProps , ' publishers' > & {
93+ | ( Omit < ResolvedPublishersCardProps , " publishers" > & {
9494 isLoading ?: false | undefined ;
9595 includeTestFeeds : boolean ;
9696 updateIncludeTestFeeds : ( newValue : boolean ) => void ;
97- publishers : Omit <
98- PriceComponent ,
99- "symbol" | "displaySymbol" | "assetClass"
100- > [ ] ;
97+ publishers : Omit <
98+ PriceComponent ,
99+ "symbol" | "displaySymbol" | "assetClass"
100+ > [ ] ;
101101 } ) ;
102102
103103const PublishersCardImpl = ( props : PublishersCardImplProps ) => (
Original file line number Diff line number Diff line change @@ -75,8 +75,8 @@ type PriceFeedsCardProps =
7575 metricsTime ?: Date | undefined ;
7676 } ;
7777
78- const PriceFeedsCard = ( props : PriceFeedsCardProps ) =>
79- < PriceComponentsCard
78+ const PriceFeedsCard = ( props : PriceFeedsCardProps ) => (
79+ < PriceComponentsCard
8080 label = "Price Feeds"
8181 searchPlaceholder = "Feed symbol"
8282 nameLoadingSkeleton = { < PriceFeedTag isLoading /> }
@@ -102,4 +102,5 @@ const PriceFeedsCard = (props: PriceFeedsCardProps) =>
102102 ) ,
103103 } ) ) ,
104104 } ) }
105- />
105+ />
106+ ) ;
You can’t perform that action at this time.
0 commit comments