From 3a28ef54d1f37f9c49c340e13b5d0f412b847d67 Mon Sep 17 00:00:00 2001 From: Daniel <790119+DanTheMan827@users.noreply.github.com> Date: Fri, 27 Mar 2026 01:26:47 -0500 Subject: [PATCH] fix(hifi): remove extra await --- js/HiFi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/HiFi.ts b/js/HiFi.ts index cb5d9fe..1bddd11 100644 --- a/js/HiFi.ts +++ b/js/HiFi.ts @@ -249,7 +249,7 @@ class HiFiClient { while (true) { const unauthorized = res?.status === 401; const previousResponse = res; - const token = await await this.#fetchAppToken({ + const token = await this.#fetchAppToken({ clientId: this.#clientId, clientSecret: this.#clientSecret, signal,