Skip to content

Commit

Permalink
revert cherry pick change
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarZanzouri committed Oct 9, 2024
1 parent 8471778 commit 130746b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,10 @@ export function useRecoveryCommands({
failedCommandByRunRecord?.commandType,
])

const releaseGripperJaws = useCallback((): Promise<CommandData[]> => {
return chainRunRecoveryCommands([RELEASE_GRIPPER_JAW])
}, [chainRunRecoveryCommands])
const releaseGripperJaws = useCallback((): Promise<void> => {
console.log('PLACEHOLDER RELEASE THE JAWS')
return Promise.resolve()
}, [])

return {
resumeRun,
Expand Down

0 comments on commit 130746b

Please sign in to comment.