From 8a04cce235e26a14c4165e1fbdbca2794f50fc3c Mon Sep 17 00:00:00 2001 From: Gandharv Date: Mon, 13 Dec 2021 14:31:03 +0530 Subject: [PATCH] fix: add correct display value (#1565) --- frontend/src/_ui/OAuth/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/_ui/OAuth/index.js b/frontend/src/_ui/OAuth/index.js index 31c59e16d3..d5dcff567f 100644 --- a/frontend/src/_ui/OAuth/index.js +++ b/frontend/src/_ui/OAuth/index.js @@ -23,7 +23,7 @@ const OAuth = ({ { name: 'None', value: 'none' }, { name: 'OAuth 2.0', value: 'oauth2' }, ]} - value={grant_type} + value={auth_type} onChange={(value) => optionchanged('auth_type', value)} />