Skip to content

Commit

Permalink
fix(suite): fix aquiring of device in remember wallet mode
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavProchazka authored and adamhavel committed Aug 9, 2024
1 parent dc64884 commit 0a0f1e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const DeviceWarning = ({
}: DeviceWarningProps) => {
const deviceStatus = deviceUtils.getStatus(device);
const deviceStatusMessage = deviceUtils.getDeviceNeedsAttentionMessage(deviceStatus);
const isLocked = useDevice().isLocked();
const isLocked = useDevice().isLocked(true);

return (
<>
Expand Down

0 comments on commit 0a0f1e7

Please sign in to comment.