We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b279bb + 54e3fa9 commit 63286f4Copy full SHA for 63286f4
frontends/web/src/app.tsx
@@ -171,7 +171,8 @@ export const App = () => {
171
const deviceIDs: string[] = Object.keys(devices);
172
const activeAccounts = accounts.filter(acct => acct.active);
173
174
- const showBottomNavigation = deviceIDs.length > 0 || activeAccounts.length > 0;
+ const isBitboxBootloader = devices[deviceIDs[0]] === 'bitbox02-bootloader';
175
+ const showBottomNavigation = (deviceIDs.length > 0 || activeAccounts.length > 0) && !isBitboxBootloader;
176
177
return (
178
<ConnectedApp>
0 commit comments