From e4321c51c3f53fdbcc2ce02701a15ea181d58f95 Mon Sep 17 00:00:00 2001 From: rohanharikr Date: Wed, 14 Aug 2024 14:44:04 +0100 Subject: [PATCH] Refresh UI fixes 2 (#56) * default value of account to be managed * seperator for custom --- src/App.svelte | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index d3b1026..7e7a2dc 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -186,8 +186,8 @@ state: '', prompt: ['consent', 'login'], login_hint: '', - custom: '', - scope: '' + scope: '', + custom: '' }, required: ['client_id', 'redirect_uri', 'nonce', 'response_type'] }; @@ -228,7 +228,7 @@ invite_playground_query_params: ['inviter', 'client_id', 'initiate_login_uri', 'return_uri'], query_param_values: { ...queryParams.params, - account: 'personal' + account: 'managed' }, protocol_param_values: { ...protocolParams.params, @@ -1075,7 +1075,14 @@