From cd10223cb1e4ef5d7f7fbd191c51a478407251e7 Mon Sep 17 00:00:00 2001 From: Isaac Roberts <119639439+madebyisaacr@users.noreply.github.com> Date: Wed, 30 Jul 2025 11:31:51 -0400 Subject: [PATCH] Revert to fetch.tools domain --- plugins/airtable/src/auth.ts | 2 +- plugins/google-search-console/package.json | 2 +- plugins/google-sheets/src/auth.ts | 2 +- plugins/hubspot/src/auth.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/airtable/src/auth.ts b/plugins/airtable/src/auth.ts index ca89122ec..68f2defa0 100644 --- a/plugins/airtable/src/auth.ts +++ b/plugins/airtable/src/auth.ts @@ -30,7 +30,7 @@ class Auth { constructor() { this.AUTH_URI = location.hostname.includes("localhost") ? "https://localhost:8787" - : "https://oauth.framer.wtf/airtable-plugin" + : "https://oauth.fetch.tools/airtable-plugin" } async logout() { diff --git a/plugins/google-search-console/package.json b/plugins/google-search-console/package.json index 218a13692..164509ce6 100644 --- a/plugins/google-search-console/package.json +++ b/plugins/google-search-console/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "run g:dev", - "build": "VITE_OAUTH_API_DOMAIN=https://oauth.framer.wtf/google-search-console-plugin run g:build", + "build": "VITE_OAUTH_API_DOMAIN=https://oauth.fetch.tools/google-search-console-plugin run g:build", "check-biome": "run g:check-biome", "check-eslint": "run g:check-eslint", "pack": "npx framer-plugin-tools@latest pack", diff --git a/plugins/google-sheets/src/auth.ts b/plugins/google-sheets/src/auth.ts index 8400df5aa..d728f26f3 100644 --- a/plugins/google-sheets/src/auth.ts +++ b/plugins/google-sheets/src/auth.ts @@ -33,7 +33,7 @@ class Auth { constructor() { this.AUTH_URI = location.hostname.includes("localhost") ? "https://localhost:8787" - : "https://oauth.framer.wtf/google-sheets-plugin" + : "https://oauth.fetch.tools/google-sheets-plugin" } async logout() { diff --git a/plugins/hubspot/src/auth.ts b/plugins/hubspot/src/auth.ts index cdb5c1ca4..86884cb89 100644 --- a/plugins/hubspot/src/auth.ts +++ b/plugins/hubspot/src/auth.ts @@ -32,7 +32,7 @@ const pluginTokensKey = "hubspotTokens" const isLocal = () => window.location.hostname.includes("localhost") -const AUTH_URI = isLocal() ? "https://localhost:8787" : "https://oauth.framer.wtf/hubspot-plugin" +const AUTH_URI = isLocal() ? "https://localhost:8787" : "https://oauth.fetch.tools/hubspot-plugin" class Auth { storedTokens?: StoredTokens | null