Skip to content

Commit

Permalink
fix: remove unused variable
Browse files Browse the repository at this point in the history
Signed-off-by: Sai Sankeerth <[email protected]>
  • Loading branch information
Sai Sankeerth committed Sep 26, 2023
1 parent 2029fb4 commit cb2205e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapters/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit cb2205e

Please sign in to comment.