@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.
@@ -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
  }