From 08f1c7fe24610b0ca88c1789a3d5a95a0fdd11e9 Mon Sep 17 00:00:00 2001 From: Patrick Wehbe Date: Wed, 17 Jun 2026 14:20:39 +0300 Subject: [PATCH] Fix outdated CodeSandbox console location in tic-tac-toe tutorial --- src/content/learn/tutorial-tic-tac-toe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/tutorial-tic-tac-toe.md b/src/content/learn/tutorial-tic-tac-toe.md index d09d484844d..4bcb22345dd 100644 --- a/src/content/learn/tutorial-tic-tac-toe.md +++ b/src/content/learn/tutorial-tic-tac-toe.md @@ -723,7 +723,7 @@ function Square({ value }) { } ``` -If you click on a square now, you should see a log saying `"clicked!"` in the _Console_ tab at the bottom of the _Browser_ section in CodeSandbox. Clicking the square more than once will log `"clicked!"` again. Repeated console logs with the same message will not create more lines in the console. Instead, you will see an incrementing counter next to your first `"clicked!"` log. +If you click on a square now, you should see a log saying `"clicked!"` in the _Console_ tab in CodeSandbox. Clicking the square more than once will log `"clicked!"` again. Repeated console logs with the same message will not create more lines in the console. Instead, you will see an incrementing counter next to your first `"clicked!"` log.