Skip to content

Commit

Permalink
Add missing semantic heading to funding warning dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
amugofjava committed Jul 21, 2024
1 parent 837db46 commit d61d109
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/ui/podcast/funding_menu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ class FundingLink {
context: context,
useRootNavigator: false,
builder: (_) => BasicDialogAlert(
title: Text(L.of(context)!.podcast_funding_dialog_header),
title: Semantics(
header: true,
child: Text(L.of(context)!.podcast_funding_dialog_header),
),
content: Text(L.of(context)!.consent_message),
actions: <Widget>[
BasicDialogAction(
Expand Down

0 comments on commit d61d109

Please sign in to comment.