We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f1d98c commit e55ab71Copy full SHA for e55ab71
packages/console/src/App/Stage/GraphQL/index.tsx
@@ -85,7 +85,9 @@ export function Explorer() {
85
<HeaderSwitcherLabel>
86
{stack.info.StackName}
87
</HeaderSwitcherLabel>
88
- {stack.constructs.byType.Api?.map((item) => (
+ {stack.constructs.byType.Api?.filter(
89
+ (item) => item.data.graphql
90
+ ).map((item) => (
91
<HeaderSwitcherItem
92
key={item.stack + item.addr}
93
to={`../${item.stack}/${item.addr}`}
0 commit comments