Skip to content

Commit

Permalink
Merge pull request #168 from ucbepic/savevalglean
Browse files Browse the repository at this point in the history
Remove unnecessary console log statements
  • Loading branch information
shreyashankar authored Nov 13, 2024
2 parents 672f672 + dcf8723 commit 8474acb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions website/src/components/OperationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,6 @@ function operationReducer(state: State, action: Action): State {
: state;

case "UPDATE_GUARDRAILS":
console.log("UPDATE_GUARDRAILS", state, action.payload);
return state.operation
? {
...state,
Expand Down Expand Up @@ -619,7 +618,6 @@ export const OperationCard: React.FC<{ index: number }> = ({ index }) => {

const onOptimize = useCallback(async () => {
if (!operation) return;
console.log("Optimizing operation", operation.id);

try {
// Clear the output
Expand Down

0 comments on commit 8474acb

Please sign in to comment.