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 Mar 30, 2022
1 parent 0efae49 commit 79af9ca
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 79af9ca

Please sign in to comment.