Skip to content

Commit afd7907

Browse files
committed
fix(account): update button navigation to use context.goNamed
- Replace context.pushNamed with context.goNamed for account linking button navigation - This change ensures proper navigation behavior in the account page
1 parent 5d376d9 commit afd7907

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
@@ -113,7 +113,7 @@ class AccountPage extends StatelessWidget {
113113
textStyle: textTheme.labelLarge,
114114
),
115115
onPressed: () {
116-
context.pushNamed(Routes.accountLinkingName);
116+
context.goNamed(Routes.accountLinkingName);
117117
},
118118
),
119119
);

0 commit comments

Comments
 (0)