From 053ad250f19306209ac5559009eeab958bb2e46a Mon Sep 17 00:00:00 2001 From: Ayman Alhourani Date: Sat, 17 May 2025 12:30:01 -0400 Subject: [PATCH] fix: wrong verb tense in doc --- src/content/learn/reusing-logic-with-custom-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/reusing-logic-with-custom-hooks.md b/src/content/learn/reusing-logic-with-custom-hooks.md index e2f8770d45b..b6562e2df55 100644 --- a/src/content/learn/reusing-logic-with-custom-hooks.md +++ b/src/content/learn/reusing-logic-with-custom-hooks.md @@ -820,7 +820,7 @@ export default function ChatRoom({ roomId }) { // ... ``` -and pass it as an input to another Hook: +and passing it as an input to another Hook: ```js {6} export default function ChatRoom({ roomId }) {