diff --git a/lib/screens/common_widgets/auth/oauth2_field.dart b/lib/screens/common_widgets/auth/oauth2_field.dart index 9fc019f3..8f35665d 100644 --- a/lib/screens/common_widgets/auth/oauth2_field.dart +++ b/lib/screens/common_widgets/auth/oauth2_field.dart @@ -145,7 +145,9 @@ class _OAuth2FieldsState extends ConsumerState { ? null : (OAuth2GrantType? newGrantType) { if (newGrantType != null && newGrantType != _grantType) { - _grantType = newGrantType; + setState(() { + _grantType = newGrantType; + }); _updateOAuth2(); }