From 016023a7bb023a6fe8b46aa29e7edb5388701c5c Mon Sep 17 00:00:00 2001 From: BultjerCMC <46517276+BultjerCMC@users.noreply.github.com> Date: Fri, 9 Aug 2019 11:06:38 +0200 Subject: [PATCH] fix(ms-adal): use correct accessTokenType prop (#3128) Removed a typo, which made the Access Token Type undefined all the time. --- src/@ionic-native/plugins/ms-adal/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/ms-adal/index.ts b/src/@ionic-native/plugins/ms-adal/index.ts index fe09e1b52..35dd3ec79 100644 --- a/src/@ionic-native/plugins/ms-adal/index.ts +++ b/src/@ionic-native/plugins/ms-adal/index.ts @@ -3,7 +3,7 @@ import { CordovaInstance, InstanceProperty, IonicNativePlugin, Plugin, checkAvai export interface AuthenticationResult { accessToken: string; - accesSTokenType: string; + accessTokenType: string; expiresOn: Date; idToken: string; isMultipleResourceRefreshToken: boolean;