From 77687bf17de2ecaab3304184aa62275140922e07 Mon Sep 17 00:00:00 2001 From: Karandeep Singh Date: Wed, 30 Oct 2024 12:47:05 +0530 Subject: [PATCH] chore: remove comments --- .../TicTacToeComponents/TicTacToeBoard.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/advanced/dapps/smart-sessions-demo/src/components/TicTacToeComponents/TicTacToeBoard.tsx b/advanced/dapps/smart-sessions-demo/src/components/TicTacToeComponents/TicTacToeBoard.tsx index fad4e890b..527afd011 100644 --- a/advanced/dapps/smart-sessions-demo/src/components/TicTacToeComponents/TicTacToeBoard.tsx +++ b/advanced/dapps/smart-sessions-demo/src/components/TicTacToeComponents/TicTacToeBoard.tsx @@ -36,17 +36,7 @@ function TicTacToeBoard() { const data = await handleUserMove(gameId, position); const { userOpIdentifier } = data; await getCallsStatus(userOpIdentifier); - // const bundlerClient = createPimlicoBundlerClient({ - // chain: baseSepolia, - // entryPoint: ENTRYPOINT_ADDRESS_V07, - // transport: http(getBundlerUrl(), { - // timeout: 300000, - // }), - // }); - - // await bundlerClient.waitForUserOperationReceipt({ - // hash: userOpIdentifier, - // }); + console.log("User move made successfully"); // After the user's move, read the updated board state const updatedBoard = await getBoardState(gameId);