[auth] Copy change

This commit is contained in:
Neeraj Gupta 2024-12-05 15:43:45 +05:30
parent a92e74d65c
commit a78cd0e70f
2 changed files with 2 additions and 1 deletions

View File

@ -451,6 +451,7 @@
"pinText": "Pin", "pinText": "Pin",
"unpinText": "Unpin", "unpinText": "Unpin",
"fav": "Favorite", "fav": "Favorite",
"favorites": "Favorites",
"unfav": "Unfavorite", "unfav": "Unfavorite",
"favoritedCodeMessage": "{code} has been added to favorites", "favoritedCodeMessage": "{code} has been added to favorites",
"unfavoritedCodeMessage": "{code} has been removed from favorites", "unfavoritedCodeMessage": "{code} has been removed from favorites",

View File

@ -511,7 +511,7 @@ class _HomePageState extends State<HomePage> {
} }
if (index == 1 && hasFavouriteCodes) { if (index == 1 && hasFavouriteCodes) {
return TagChip( return TagChip(
label: context.l10n.fav, label: context.l10n.favorites,
state: _isFavouriteOpen state: _isFavouriteOpen
? TagChipState.selected ? TagChipState.selected
: TagChipState.unselected, : TagChipState.unselected,