Skip to content

Commit

Permalink
fix: Update login button text to "logout" when user is logged in
Browse files Browse the repository at this point in the history
  • Loading branch information
Losses committed Dec 20, 2024
1 parent 5ef9349 commit 724a21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/settings/settings_box_scrobble_login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SettingsBoxScrobbleLogin extends SettingsBoxBase {
}
},
child: Text(
isLoggedIn ? s.edit : (hasError ? s.fix : s.login),
isLoggedIn ? s.logout : (hasError ? s.fix : s.login),
),
);
}
Expand Down

0 comments on commit 724a21d

Please sign in to comment.