From 6707efebbe4217918abcd811b920f661b4fc42b3 Mon Sep 17 00:00:00 2001 From: stopflock Date: Fri, 30 Jan 2026 21:49:27 -0600 Subject: [PATCH] Fix color of "get more" link text in profile dropdown --- lib/widgets/add_node_sheet.dart | 3 +-- lib/widgets/edit_node_sheet.dart | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/widgets/add_node_sheet.dart b/lib/widgets/add_node_sheet.dart index 8381f8f..5699dde 100644 --- a/lib/widgets/add_node_sheet.dart +++ b/lib/widgets/add_node_sheet.dart @@ -212,9 +212,8 @@ class _AddNodeSheetState extends State { const SizedBox(width: 8), Text( locService.t('profiles.getMore'), - style: TextStyle( + style: const TextStyle( fontStyle: FontStyle.italic, - color: Theme.of(context).primaryColor, ), ), ], diff --git a/lib/widgets/edit_node_sheet.dart b/lib/widgets/edit_node_sheet.dart index 806825a..52441f5 100644 --- a/lib/widgets/edit_node_sheet.dart +++ b/lib/widgets/edit_node_sheet.dart @@ -624,9 +624,8 @@ class _EditNodeSheetState extends State { const SizedBox(width: 8), Text( locService.t('profiles.getMore'), - style: TextStyle( + style: const TextStyle( fontStyle: FontStyle.italic, - color: Theme.of(context).primaryColor, ), ), ],