Fix Wallet onboarding P3A question on Android

This commit is contained in:
Darnell Andries
2022-08-22 11:30:57 -07:00
parent d668def389
commit 38cca83fb8
@@ -241,6 +241,7 @@ public class BraveWalletActivity extends BraveWalletBaseActivity implements OnNe
setupWalletFragment.setOnNextPageListener(this);
navigationItems.add(new NavigationItem(
getResources().getString(R.string.setup_crypto), setupWalletFragment));
mBraveWalletService.onOnboardingShown();
} else if (type == UNLOCK_WALLET_ACTION) {
UnlockWalletFragment unlockWalletFragment = new UnlockWalletFragment();
unlockWalletFragment.setOnNextPageListener(this);
@@ -428,7 +429,6 @@ public class BraveWalletActivity extends BraveWalletBaseActivity implements OnNe
@Override
public void gotoOnboardingPage() {
mBraveWalletService.onOnboardingShown();
replaceNavigationFragments(ONBOARDING_ACTION, true);
}