From 9d07d76d1f236cde1008983292fb15fc777f9056 Mon Sep 17 00:00:00 2001 From: xenticore Date: Thu, 1 May 2025 20:15:55 -0400 Subject: [PATCH] fix: erroneous brackets --- src/background/background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background/background.ts b/src/background/background.ts index cfcc6ee..1798bd1 100644 --- a/src/background/background.ts +++ b/src/background/background.ts @@ -98,7 +98,7 @@ chrome.runtime.onMessage.addListener( switch (service) { case "prices.tf": { priceUsingPricesTF(token, sku) - .then((response) => sendResponse({response})) + .then((response) => sendResponse(response)) .catch(error => { sendResponse(error); return false;