chore: update subscription snackbar link color (#2178)

This commit is contained in:
ggurdin 2025-03-19 12:29:52 -04:00 committed by GitHub
parent e3012f479f
commit 84fde3026a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,7 @@ void showSubscribedSnackbar(BuildContext context) {
const TextSpan(text: " "),
TextSpan(
text: L10n.of(context).clickToManageSubscription,
style: TextStyle(color: Theme.of(context).colorScheme.primary),
style: TextStyle(color: Theme.of(context).colorScheme.inversePrimary),
recognizer: TapGestureRecognizer()
..onTap = () => context.go('/rooms/settings/subscription'),
),