fix(suite-native): fix earn to home navigation for btc-only firmware on android

This commit is contained in:
Tomas Boda
2026-02-13 10:17:27 +01:00
committed by Tomáš Boďa
parent b2aa45e5d6
commit 9ef5e45713

View File

@@ -92,12 +92,7 @@ export const DeviceManagerContent = () => {
// When user selects BTC only device in device switcher, redirect to homescreen out of the earn section.
if (isOnEarnScreenRoute && isBitcoinOnlyFirmware) {
navigation.reset({
index: 0,
routes: [
{ name: AppTabsRoutes.HomeStack, params: { screen: HomeStackRoutes.Home } },
],
});
navigation.navigate(AppTabsRoutes.HomeStack, { screen: HomeStackRoutes.Home });
}
dispatch(selectDeviceThunk({ device: selectedDevice }));