From 3f1ac189862debe4b7b8805db665898c71210f14 Mon Sep 17 00:00:00 2001 From: Wes Gorgichuk Date: Wed, 1 Aug 2018 09:22:11 -0700 Subject: [PATCH] Tweak logout so the webView stays open. Until the user is completed logging out. --- src/webauth/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webauth/index.js b/src/webauth/index.js index 5013223..b39bbc6 100644 --- a/src/webauth/index.js +++ b/src/webauth/index.js @@ -125,6 +125,6 @@ export default class WebAuth { } const { client, agent } = this const logoutUrl = client.logoutUrl(options) - return agent.openWeb(logoutUrl, true) + return agent.openWeb(logoutUrl, false) } }