From 89c76f6861b163b7e67c73c5609fc073f2c6a800 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Fri, 30 Jan 2026 03:04:01 +0900 Subject: [PATCH] [backport core/1.38] fix: use getAuthHeader in createCustomer to support API key auth (#8425) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #8408 to `core/1.38` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8425-backport-core-1-38-fix-use-getAuthHeader-in-createCustomer-to-support-API-key-auth-2f76d73d36508136b4f1c043c384caa2) 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')) }