Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MiaoMint committed Jan 9, 2024
1 parent 5e50e2c commit 520c733
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/views/pages/favorites_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class _FavoritesPageState extends fluent.State<FavoritesPage> {
context,
"home.favorite-all",
translationParams: {
"type": ExtensionUtils.typeToString(widget.type),
"type": ExtensionUtils.typeToString(widget.type).toLowerCase(),
},
),
),
Expand Down Expand Up @@ -96,7 +96,8 @@ class _FavoritesPageState extends fluent.State<FavoritesPage> {
context,
"home.favorite-all",
translationParams: {
"type": ExtensionUtils.typeToString(widget.type),
"type": ExtensionUtils.typeToString(widget.type)
.toLowerCase(),
},
),
style: fluent.FluentTheme.of(context).typography.subtitle,
Expand Down

0 comments on commit 520c733

Please sign in to comment.