Skip to content

Commit 061c034

Browse files
authored
fix: narrow down integrations properly on platformSelector (#9954)
1 parent 102f5d8 commit 061c034

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/components/platformSelector/index.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ export function PlatformSelector({
198198
guides: platform.guides.filter(g =>
199199
matches.some(m => m.key === g.key)
200200
),
201+
202+
integrations: platform.integrations.filter(i =>
203+
matches.some(m => m.key === i.key)
204+
),
201205
isExpanded:
202206
// expand search results
203207
searchValue !== '' ||

0 commit comments

Comments
 (0)