Skip to content

Commit 6523c45

Browse files
committed
fix: formatting
1 parent 218ffd9 commit 6523c45

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

apps/insights/src/components/PriceFeed/publishers-card.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ const ResolvedPublishersCard = ({
9090

9191
type 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

103103
const PublishersCardImpl = (props: PublishersCardImplProps) => (

apps/insights/src/components/Publisher/price-feeds.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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+
);

0 commit comments

Comments
 (0)