Skip to content

Commit 298f971

Browse files
authored
Fix pluralization Path notification
1 parent ff4ddab commit 298f971

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

packages/devtools_app/lib/src/screens/deep_link_validation/deep_link_list_view.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,8 @@ class _NotificationCardSection extends StatelessWidget {
440440
children: [
441441
if (domainErrorCount > 0)
442442
NotificationCard(
443-
title: '$domainErrorCount ${pluralize('domain', domainErrorCount)} not verified',
443+
title:
444+
'$domainErrorCount ${pluralize('domain', domainErrorCount)} not verified',
444445
description:
445446
'This affects all deep links. Fix issues to make users go directly to your app.',
446447
actionButton: TextButton(
@@ -462,7 +463,8 @@ class _NotificationCardSection extends StatelessWidget {
462463
const SizedBox(width: defaultSpacing),
463464
if (pathErrorCount > 0)
464465
NotificationCard(
465-
title: '$pathErrorCount path not working',
466+
title:
467+
'$pathErrorCount ${pluralize('path', pathErrorCount)} not working',
466468
description:
467469
'Fix these path to make sure users are directed to your app',
468470
actionButton: TextButton(

0 commit comments

Comments
 (0)