Skip to content

Commit

Permalink
Correct tic-tac-toe game port and bug (hasura#4565)
Browse files Browse the repository at this point in the history
* correct port number for tic-tac-toe game

* correct winning combo for tic-tac-toe game

Co-authored-by: Tirumarai Selvan <[email protected]>
  • Loading branch information
boda-sh and tirumaraiselvan authored May 18, 2020
1 parent 78aa346 commit de94228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion community/sample-apps/tic-tac-toe-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ To deploy all the services run the app using docker:
docker-compose up -d --build
```

You can access your app at http://localhost:3030
You can access your app at http://localhost:8000
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const winMoveMatrix = [
[3, 4, 5],
[6, 7, 8],
[0, 3, 6],
[1, 4, 8],
[1, 4, 7],
[2, 5, 8],
[0, 4, 8],
[2, 4, 6],
Expand Down

0 comments on commit de94228

Please sign in to comment.