Skip to content

Commit

Permalink
Removed debug console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiaMineJP committed May 15, 2022
1 parent 115a538 commit 4fa4770
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/api-react/src/hooks/useService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ export default function useService(service: ServiceName, options: Options): {
} else if (keepState === 'stopped' && keepState !== state && !isProcessing && isRunning === true) {
handleStop();
} else if(keepState === 'running' && state === 'running' && !isProcessing && isRunning === true){
console.log('handleAlreadyStarted called!', keepState, state, isProcessing, disabled, isRunning);
handleAlreadyStarted();
}
}, [keepState, state, isProcessing, disabled, isRunning]);
Expand Down

0 comments on commit 4fa4770

Please sign in to comment.