@microsoft/teamsfx 2.3.1-beta.2023111403.0 → 2.3.1-beta.2023112703.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm2017.js +1 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +5 -3
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +1 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +5 -3
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +4 -4
package/dist/index.esm2017.js
CHANGED
@@ -1112,7 +1112,7 @@ function createApiClient(apiEndpoint, authProvider) {
|
|
1112
1112
|
baseURL: apiEndpoint,
|
1113
1113
|
});
|
1114
1114
|
instance.interceptors.request.use(async function (config) {
|
1115
|
-
return await authProvider.AddAuthenticationInfo(config);
|
1115
|
+
return (await authProvider.AddAuthenticationInfo(config));
|
1116
1116
|
});
|
1117
1117
|
return instance;
|
1118
1118
|
}
|