Skip to content

Commit cab0003

Browse files
committed
chore: remove console.log
1 parent 6d3d79b commit cab0003

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

webapp/_webapp/src/components/message-entry-container/tools/jsonrpc.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export const JsonRpc = ({ functionName, jsonRpcResult, preparing, animated }: Js
3434
<div className="flex items-center justify-between cursor-pointer" onClick={toggleCollapse}>
3535
<h3 className="tool-card-title tool-card-jsonrpc">{functionName}</h3>
3636
<button
37-
onClick={toggleCollapse}
3837
className="text-gray-400 hover:text-gray-600 transition-colors duration-200 p-1 rounded"
3938
aria-label={isCollapsed ? "Expand" : "Collapse"}
4039
>

webapp/_webapp/src/components/message-entry-container/tools/tools.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@ export default function Tools({ messageId, functionName, message, error, prepari
3333
if (error && error !== "") {
3434
return <ErrorToolCard functionName={functionName} errorMessage={error} animated={animated} />;
3535
}
36-
console.log("message: ", message);
37-
console.log("functionName: ", functionName);
38-
console.log("error: ", error);
39-
console.log("preparing: ", preparing);
40-
console.log("animated: ", animated);
36+
4137
const jsonRpcResult = parseJsonRpcResult(message);
4238

4339
if (functionName === "paper_score") {

0 commit comments

Comments
 (0)