Minor tweaks

This commit is contained in:
Gregory Schier
2023-11-12 21:16:42 -08:00
parent 356b8acd5b
commit 92dcbedf2a
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ export function useIntrospectGraphQL(baseRequest: HttpRequest) {
setError(undefined);
const args = {
...baseRequest,
bodyType: 'graphql',
bodyType: 'application/json',
body: { text: introspectionRequestBody },
};
const response = await minPromiseMillis(sendEphemeralRequest(args, activeEnvironmentId), 700);