diff --git a/Shogi.UI/Pages/Home/GameBoard/SeatedGameBoard.razor b/Shogi.UI/Pages/Home/GameBoard/SeatedGameBoard.razor index 9bd3528..563d34a 100644 --- a/Shogi.UI/Pages/Home/GameBoard/SeatedGameBoard.razor +++ b/Shogi.UI/Pages/Home/GameBoard/SeatedGameBoard.razor @@ -74,11 +74,10 @@ { if (pieceAtPosition is null) { - Console.WriteLine("Moving piece from hand."); // Placing a piece from the hand to an empty space. - // await ShogiApi.Move( - // Session.SessionName, - // new MovePieceCommand(selectedPieceFromHand.Value, position)); + await ShogiApi.Move( + Session.SessionName, + new MovePieceCommand(selectedPieceFromHand.Value, position)); } StateHasChanged(); return;