Skip to content

Commit

Permalink
filter out gaming APIs (#2274)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmoyAtb authored Jun 25, 2024
1 parent f2ff04f commit 3be4fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/storage-ui/src/Components/Modules/ApiKeys.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const ApiKeys = () => {
</TableRow>
</TableHead>
<TableBody>
{keys.map(k =>
{keys.filter(k => k.type !== "gaming").map(k =>
<TableRow
key={k.id}
type='grid'
Expand Down

0 comments on commit 3be4fe0

Please sign in to comment.