Skip to content

Commit 35666d4

Browse files
committed
feat(account): change login icon to sync for better anonymity emphasis
- Replaces login icon with sync icon for users who are not logged in - This visual change highlights the action of "syncing" or "linking" accounts - Improves user interface consistency with common UI patterns
1 parent ad0fea9 commit 35666d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/account/view/account_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class AccountPage extends StatelessWidget {
4444
// This declutters the main content card and follows common UI patterns.
4545
if (isAnonymous)
4646
IconButton(
47-
icon: const Icon(Icons.login),
47+
icon: const Icon(Icons.sync),
4848
tooltip: l10n.anonymousLimitButton,
4949
onPressed: () => context.goNamed(Routes.accountLinkingName),
5050
)

0 commit comments

Comments
 (0)