Skip to content

Commit f42b853

Browse files
authored
docs: remove unofficial content in useTransition.md (#1138)
# useTransition 공식문서에 있지 않은 내용 삭제 아래 그림처럼 공식 문서에 없는 내용이 번역본에 포함되어 있어 삭제했습니다. <img width="951" alt="스크린샷 2025-02-16 오후 3 29 08" src="https://github.com/user-attachments/assets/7e6dff40-4973-4cc4-8882-41c68f49b954" /> ## 필수 확인 사항 - [x] [기여자 행동 강령 규약<sup>Code of Conduct</sup>](https://github.com/reactjs/ko.react.dev/blob/main/CODE_OF_CONDUCT.md) - [x] [기여 가이드라인<sup>Contributing</sup>](https://github.com/reactjs/ko.react.dev/blob/main/CONTRIBUTING.md) - [x] [공통 스타일 가이드<sup>Universal Style Guide</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/universal-style-guide.md) - [x] [번역을 위한 모범 사례<sup>Best Practices for Translation</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/best-practices-for-translation.md) - [x] [번역 용어 정리<sup>Translate Glossary</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/translate-glossary.md) - [x] [`textlint` 가이드<sup>Textlint Guide</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/textlint-guide.md) - [x] [맞춤법 검사<sup>Spelling Check</sup>](https://nara-speller.co.kr/speller/) ## 선택 확인 사항 - [ ] 번역 초안 작성<sup>Draft Translation</sup> - [ ] 리뷰 반영<sup>Resolve Reviews</sup>
1 parent b8b5f3f commit f42b853

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/content/reference/react/useTransition.md

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ function SubmitButton({ submitAction }) {
9797

9898
* `action`: 하나 이상의 [`set` 함수](/reference/react/useState#setstate)를 호출하여 일부 상태를 업데이트하는 함수입니다. React는 매개변수 없이 즉시 `action`을 호출하고 `action` 함수 호출 중에 동기적으로 예약된 모든 상태 업데이트를 Transitions으로 표시합니다. `action`에서 await된 비동기 호출은 Transition에 포함되지만, 현재로서는 `await` 이후의 `set` 함수 호출을 추가적인 `startTransition`으로 감싸야 합니다([문제 해결 참조](#react-doesnt-treat-my-state-update-after-await-as-a-transition)).
9999
Transitions으로 표시된 상태 업데이트는 [non-blocking](#marking-a-state-update-as-a-non-blocking-transition) 방식으로 처리되며, [불필요한 로딩 표시가 나타나지 않습니다](#preventing-unwanted-loading-indicators).
100-
>>>>>>> b1a249d597016c6584e4c186daa28b180cc9aafc
101100

102101
#### 반환값 {/*starttransition-returns*/}
103102

0 commit comments

Comments
 (0)