diff --git a/plugins/graphiql/src/components/GraphiQLPage/GraphiQLPage.jsx b/plugins/graphiql/src/components/GraphiQLPage/GraphiQLPage.jsx index 4608278805..b7f78f34c6 100644 --- a/plugins/graphiql/src/components/GraphiQLPage/GraphiQLPage.jsx +++ b/plugins/graphiql/src/components/GraphiQLPage/GraphiQLPage.jsx @@ -55,10 +55,17 @@ export const GraphiQLPage = () => { ); + } else if (!endpoints.value) { + content = ( + + + No GraphQL endpoints available + + + ); } else { content = ( - {/* @ts-expect-error */} );