Skip to content

Commit

Permalink
Merge pull request #2684 from kaloudis/bug-error-scanner
Browse files Browse the repository at this point in the history
Bug fix: invisible tab navigation present on error
  • Loading branch information
kaloudis authored Dec 29, 2024
2 parents f205fe1 + 38de9af commit c931be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/Wallet/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ export default class Wallet extends React.Component<WalletProps, WalletState> {
)}
</>
)}
{posStatus !== 'active' && (
{posStatus !== 'active' && !error && (
<Tab.Screen
name="Camera"
component={CameraScreen}
Expand Down

0 comments on commit c931be2

Please sign in to comment.