From 60c64462d57f1d80d5dcecbba0c951f187b84e26 Mon Sep 17 00:00:00 2001 From: ghosttly Date: Thu, 24 Aug 2023 10:08:23 +0200 Subject: [PATCH] changed API endpoint --- packages/sdk/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sdk/src/index.ts b/packages/sdk/src/index.ts index 73b6159..e920981 100644 --- a/packages/sdk/src/index.ts +++ b/packages/sdk/src/index.ts @@ -1,5 +1,5 @@ import fetch from "cross-fetch"; -const API = "https://mailik.aexol.work/graphql"; +const API = "https://backend.mailik.dev/graphql"; type MailInputType = { body: string; subject: string; replyTo: string };