diff --git a/src/content/docs/usecontroller/controller.mdx b/src/content/docs/usecontroller/controller.mdx
index 74ddb7360..c761466d9 100644
--- a/src/content/docs/usecontroller/controller.mdx
+++ b/src/content/docs/usecontroller/controller.mdx
@@ -23,6 +23,7 @@ React Hook Form은 비제어 컴포넌트와 기본 입력 요소를 지향하
| `shouldUnregister` |
**참고:** 이 prop은 `useFieldArray`와 함께 사용하지 않아야 합니다. 입력 값이 언마운트/리마운트 및 재정렬된 후에 `unregister`함수가 호출되기 때문입니다. |
| `disabled` |
useForm에서 defaultValues를 사용한 경우, 이 prop은 생략하세요.formState.isValid에 영향을 미치지 않습니다.
+
[])은 배열 폼 값에 대해 작동하지 않습니다.
- undefined를 반환합니다.
+ 값은 유지하면서 사용자 수정을 방지해야 할 경우, readOnly를 사용하거나 전체 fieldset을 비활성화하세요. [예제](https://codesandbox.io/s/react-hook-form-disabled-inputs-oihxx)가 있습니다.name을 변경하면 새로운 필드로 다시 등록됩니다.
unregister를 사용하세요.defaultValues를 제공하는 것이 권장됩니다.
+ 이렇게 하면 모든 인풋, 특히 제어 컴포넌트가 올바르게 복원됩니다.
formState.isValid를 false로 강제 설정합니다.
+ 그러나 isValid는 항상 등록된 인풋 또는 스키마의 검증 결과에서 파생됩니다.
+
+- 타입 체크와의 충돌을 방지하기 위해 피해야 할 특정 키워드가 있습니다.
- 이 함수는 변경사항 구독만을 위한 것이며, 상태 업데이트 dispatch나 리렌더링 - 트리거는 허용되지 않습니다. 예: `setValue` 또는 `reset` -
-
이 함수는 createFormControl.subscribe와 동일한 기능을
공유합니다. 다만 [createFormControl](/docs/createFormControl)은 React
diff --git a/src/content/docs/useformstate.mdx b/src/content/docs/useformstate.mdx
index dbda9c9fa..4ca9c7a31 100644
--- a/src/content/docs/useformstate.mdx
+++ b/src/content/docs/useformstate.mdx
@@ -7,9 +7,13 @@ sidebar: apiLinks