diff --git a/lib/features/login/data/network/config/authorization_interceptors.dart b/lib/features/login/data/network/config/authorization_interceptors.dart index 59222915e3..3e7d611b44 100644 --- a/lib/features/login/data/network/config/authorization_interceptors.dart +++ b/lib/features/login/data/network/config/authorization_interceptors.dart @@ -94,9 +94,9 @@ class AuthorizationInterceptors extends QueuedInterceptorsWrapper { log('AuthorizationInterceptors::onError:>> _validateToRefreshToken'); if (PlatformInfo.isIOS) { - _handleRefreshTokenOnIOSPlatform(); + await _handleRefreshTokenOnIOSPlatform(); } else { - _handleRefreshTokenOnOtherPlatform(); + await _handleRefreshTokenOnOtherPlatform(); } if (extraInRequest.containsKey(FileUploader.uploadAttachmentExtraKey)) {