Skip to content

Commit 3be4fe0

Browse files
authored
filter out gaming APIs (#2274)
1 parent f2ff04f commit 3be4fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/storage-ui/src/Components/Modules/ApiKeys.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const ApiKeys = () => {
275275
</TableRow>
276276
</TableHead>
277277
<TableBody>
278-
{keys.map(k =>
278+
{keys.filter(k => k.type !== "gaming").map(k =>
279279
<TableRow
280280
key={k.id}
281281
type='grid'

0 commit comments

Comments
 (0)