Skip to content

Commit

Permalink
Corrected comments on custom hooks.
Browse files Browse the repository at this point in the history
  • Loading branch information
ishida-daiki committed Sep 4, 2024
1 parent 27fbfa8 commit 341f1b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hooks/useFormState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type UseFormStateResult = {
* useFormState フック
*
* フォームの状態を管理するためのカスタムフックです。
* タイトルと本文の入力値を管理し、入力値が更新されたらそれぞれの状態を更新します
* タイトルと本文の入力値を管理し、入力値が更新されたらそれぞれの内容を更新します
*
* @param {string} [initialTitle=""] - タイトルの初期値。
* @param {string} [initialBody=""] - 本文の初期値。
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useHandleClick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type UseHandleClickResult = {
* useHandleClick フック
*
* Submit ボタン押下時に実行されるクリックイベントを処理するためのカスタムフックです。
* 画像のアップロードやメッセージの投稿を行い、必要な状態を更新します
* 画像のアップロードやメッセージの投稿を行います
*
* @param {object} dependencies - フックが必要とする依存関係のオブジェクト。
* @param {string | null} dependencies.elementName - 要素名。
Expand Down

0 comments on commit 341f1b3

Please sign in to comment.