Skip to content

Commit

Permalink
Adds .default so create function could be found
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-smartystreets committed Dec 6, 2023
1 parent 4ca49da commit d09b9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpSender.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const {buildSmartyResponse} = require("../src/util/buildSmartyResponse");

class HttpSender {
constructor(timeout = 10000, proxyConfig, debug = false) {
this.axiosInstance = Axios.create();
this.axiosInstance = Axios.default.create();
this.timeout = timeout;
this.proxyConfig = proxyConfig;
if (debug) this.enableDebug();
Expand Down

0 comments on commit d09b9fd

Please sign in to comment.