From 6e5b72a685d7a9eb606d4806b69615ca31a91414 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Fri, 30 Jan 2026 03:04:22 +0900 Subject: [PATCH] [backport cloud/1.38] fix: use getAuthHeader in createCustomer to support API key auth (#8426) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #8408 to `cloud/1.38` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8426-backport-cloud-1-38-fix-use-getAuthHeader-in-createCustomer-to-support-API-key-auth-2f76d73d365081ad948ffed429f3714b) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne Co-authored-by: Subagent 5 Co-authored-by: Amp --- src/stores/firebaseAuthStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/firebaseAuthStore.ts b/src/stores/firebaseAuthStore.ts index 41bae52a28..32ae22a9ac 100644 --- a/src/stores/firebaseAuthStore.ts +++ b/src/stores/firebaseAuthStore.ts @@ -278,7 +278,7 @@ export const useFirebaseAuthStore = defineStore('firebaseAuth', () => { } const createCustomer = async (): Promise => { - const authHeader = await getFirebaseAuthHeader() + const authHeader = await getAuthHeader() if (!authHeader) { throw new FirebaseAuthStoreError(t('toastMessages.userNotAuthenticated')) }