Skip to content

Commit

Permalink
fix(suite): #4233 disable autoreboot feature
Browse files Browse the repository at this point in the history
(cherry picked from commit c60709a)
  • Loading branch information
marekrjpolak authored and vdovhanych committed Sep 8, 2021
1 parent 7d9ab03 commit 8b28b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/suite/src/hooks/firmware/useRebootRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const useRebootRequest = (
return requestedMode === 'bootloader' &&
valid(deviceFwVersion) &&
satisfies(deviceFwVersion, '>=1.10.0 <2.0.0')
? 'automatic'
? 'manual' // TODO: replace with 'automatic' mode when #4233 solved
: 'manual';
});

Expand Down

0 comments on commit 8b28b4c

Please sign in to comment.