From f8474864ab4710c6e020605437f9a59f908e94aa Mon Sep 17 00:00:00 2001 From: Pine Date: Wed, 26 Mar 2025 20:13:41 -0600 Subject: [PATCH] fix hm api url --- src/util/graphql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/graphql.ts b/src/util/graphql.ts index 11fc076..72de44e 100644 --- a/src/util/graphql.ts +++ b/src/util/graphql.ts @@ -8,7 +8,7 @@ import { getSlugFromName } from "./index.js"; import chalk from "chalk"; export async function sendGraphQLReqToHypermode(apiKey: string, query: string): Promise { - const url = "http://localhost:9081/graphql"; + const url = "https://api.hypermode.com/graphql"; const options = { body: JSON.stringify({ query }),