fix(accessibility): address review feedback

This commit is contained in:
Storm Dragon 2026-02-27 21:05:05 -05:00
parent b552e9843c
commit 53f58aeb8b
3 changed files with 22 additions and 3 deletions

View file

@ -307,12 +307,12 @@ class SearchResultMiniSection extends HookConsumerWidget {
Row(
children: [
Text(
category.toString().split('.').last,
category.displayLabel,
style: Theme.of(context).textTheme.headlineSmall,
),
const Spacer(),
IconButton(
tooltip: 'View more ${category.toString().split('.').last}',
tooltip: 'View more ${category.displayLabel}',
icon: const Icon(Icons.arrow_forward_ios),
onPressed: onTap ?? openSearch,
),