fix(hifi): remove extra await

This commit is contained in:
Daniel 2026-03-27 01:26:47 -05:00 committed by edideaur
parent 5504e004cc
commit 3a28ef54d1

View file

@ -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,