Skip to content

Commit b73c10b

Browse files
committed
fix(account): use correct localization key for saved filters page title
- Replace placeholder localization key with the correct one for the saved filters page title - Ensure consistent and accurate localization across the application
1 parent 7c0e963 commit b73c10b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/account/view/saved_filters_page.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class SavedFiltersPage extends StatelessWidget {
2626
return Scaffold(
2727
appBar: AppBar(
2828
title: Text(
29-
// Will be updated to a new localization key later.
30-
l10n.manageFiltersPageTitle,
29+
// Use the correct localization key for the page title.
30+
l10n.savedFiltersPageTitle,
3131
style: theme.textTheme.titleLarge,
3232
),
3333
),

0 commit comments

Comments
 (0)