From 7be276752791d3a0da45bdbfa415c596ce0de76b Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 23 Jun 2025 09:51:44 -0700 Subject: [PATCH] Fix lint error --- src-web/components/GraphQLDocsExplorer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-web/components/GraphQLDocsExplorer.tsx b/src-web/components/GraphQLDocsExplorer.tsx index 7aeaa4d3..4c329534 100644 --- a/src-web/components/GraphQLDocsExplorer.tsx +++ b/src-web/components/GraphQLDocsExplorer.tsx @@ -494,7 +494,7 @@ function DocsExplorer({ return null; } - const field = schemaPointer as GraphQLField; + const field = schemaPointer as unknown as GraphQLField; const returnType = extractActualType(field.type); return (