private async void LogoutCurrentAccount()
        {
            UpdateView(LoginState.LOGGED_OUT);
            var account = m_connectedDevicesManager.Accounts[0];
            await m_connectedDevicesManager.LogoutAsync(account);

            m_rootPage.NotifyUser("Logged out", NotifyType.ErrorMessage);
        }