We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eec8de commit 6fc2dceCopy full SHA for 6fc2dce
lib/screens/common_widgets/auth/oauth2_field.dart
@@ -145,7 +145,9 @@ class _OAuth2FieldsState extends ConsumerState<OAuth2Fields> {
145
? null
146
: (OAuth2GrantType? newGrantType) {
147
if (newGrantType != null && newGrantType != _grantType) {
148
- _grantType = newGrantType;
+ setState(() {
149
+ _grantType = newGrantType;
150
+ });
151
152
_updateOAuth2();
153
}
0 commit comments