Skip to content

Commit ea31def

Browse files
committed
fix: build
1 parent fa6d5f9 commit ea31def

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/insights/src/components/PriceFeed/price-feed-select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const ResolvedPriceFeedSelect = ({
7070
const filteredAndSortedFeeds = useMemo(
7171
() =>
7272
matchSorter(feeds, search, {
73-
keys: ["displaySymbol", "symbol", "description", 'key'],
73+
keys: ["displaySymbol", "symbol", "description", "key"],
7474
}),
7575
[feeds, search],
7676
);

apps/insights/src/components/Root/search-button.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,10 @@ const SearchDialogContents = ({
197197
}));
198198

199199
if (type === ResultType.PriceFeed) {
200-
return filteredFeeds;
200+
return [...filteredFeeds];
201201
}
202202
if (type === ResultType.Publisher) {
203-
return filteredPublishers;
203+
return [...filteredPublishers];
204204
}
205205
return [...filteredFeeds, ...filteredPublishers];
206206
}, [feeds, publishers, search, type]);

0 commit comments

Comments
 (0)