Skip to content

Commit

Permalink
Fix analyzer issues in console. (#1369)
Browse files Browse the repository at this point in the history
Required for #1368
  • Loading branch information
Jonas-Sander authored Mar 5, 2024
1 parent 4590560 commit 2614b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/lib/pages/change_type_of_user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class _TypeOfUserChangeDialogsState extends State<TypeOfUserChangeDialogs> {
children: <Widget>[
Text(
'Nutzertyp ändern:',
style: Theme.of(context).textTheme.headline4,
style: Theme.of(context).textTheme.headlineMedium,
),
Form(
key: _formKey,
Expand Down Expand Up @@ -147,7 +147,7 @@ class _TypeOfUserChangeDialogsState extends State<TypeOfUserChangeDialogs> {
if (_cloudFunctionResult != null)
Text(
'$_cloudFunctionResult',
style: Theme.of(context).textTheme.bodyText1,
style: Theme.of(context).textTheme.bodyLarge,
),
],
);
Expand Down

0 comments on commit 2614b03

Please sign in to comment.