QB URL Fix.

This commit is contained in:
Patrick Fic
2021-10-13 13:35:42 -07:00
parent e7ef3b94c1
commit bdad6da6d9

View File

@@ -14,9 +14,9 @@ const queryString = require("query-string");
let qbEnv; let qbEnv;
if (process.env.NODE_ENV === "production") { if (process.env.NODE_ENV === "production") {
url = "production"; qbEnv = "production";
} else { } else {
url = `sandbox`; qbEnv = `sandbox`;
} }
const oauthClient = new OAuthClient({ const oauthClient = new OAuthClient({