Skip to content

Commit 4247e36

Browse files
committed
fix(authentication): update account linking button navigation
- Replace context.goNamed with context.pushNamed for account linking request - This change ensures proper navigation stack handling when navigating to the account linking request page
1 parent d3e051f commit 4247e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/authentication/view/account_linking_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class AccountLinkingPage extends StatelessWidget {
7575
onPressed: isLoading
7676
? null
7777
: () {
78-
context.goNamed(
78+
context.pushNamed(
7979
Routes.accountLinkingRequestCodeName,
8080
);
8181
},

0 commit comments

Comments
 (0)