Fix string template literal

This commit is contained in:
Adam Harvey
2020-12-09 16:17:48 -05:00
parent e3bd9fc2f4
commit a48f2704c9
@@ -184,7 +184,7 @@ export class MicrosoftGraphClient {
const response = await this.requestApi(`organization/${tenantId}`);
if (response.status !== 200) {
await this.handleError('organization/${tenantId}', response);
await this.handleError(`organization/${tenantId}`, response);
}
return await response.json();