Skip to content

Commit ceaae82

Browse files
committed
fix(account): update button navigation to use push instead of go
- Change context.goNamed to context.pushNamed for account linking button - This modification ensures the correct navigation behavior in the account page
1 parent c0c94e0 commit ceaae82

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.goNamed(Routes.accountLinkingName);
116+
context.pushNamed(Routes.accountLinkingName);
117117
},
118118
),
119119
);

0 commit comments

Comments
 (0)