From cb2205e92c4b2e7d2b9003e488d1f413832c730a Mon Sep 17 00:00:00 2001 From: Sai Sankeerth Date: Tue, 26 Sep 2023 12:30:14 +0530 Subject: [PATCH] fix: remove unused variable Signed-off-by: Sai Sankeerth --- src/adapters/network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adapters/network.js b/src/adapters/network.js index 45c56bf408..5ee62029a3 100644 --- a/src/adapters/network.js +++ b/src/adapters/network.js @@ -86,7 +86,7 @@ const httpSend = async (options, statTags = {}) => { const requestOptions = enhanceRequestOptions(options); const startTime = new Date(); - const { url, data, method, ...opts } = requestOptions; + const { url, data, method } = requestOptions; try { const response = await axios(requestOptions); clientResponse = { success: true, response };