Skip to content

Commit

Permalink
Update removing-effect-dependencies.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hg-pyun authored Oct 27, 2023
1 parent 0b77bdb commit 319d1d2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/content/learn/removing-effect-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -1614,11 +1614,7 @@ label, button { display: block; margin-bottom: 5px; }
Effect가 `options` 객체에 의존하기 때문에 다시 실행되고 있습니다. 객체는 의도치 않게 다시 생성될 수 있으므로 가능하면 Effect의 의존성 요소로 지정하지 않도록 해야 합니다.
<<<<<<< HEAD
가장 덜 공격적인 수정 방법은 Effect 외부에서 `roomId``serverUrl`을 읽은 다음 Effect가 이러한 기본 값에 의존하도록 만드는 것입니다(의도치 않게 변경할 수 없음). Effect 내부에서 객체를 생성하면 `createConnection`으로 전달됩니다.
=======
The least invasive fix is to read `roomId` and `serverUrl` right outside the Effect, and then make the Effect depend on those primitive values (which can't change unintentionally). Inside the Effect, create an object and pass it to `createConnection`:
>>>>>>> 68f417a600c7d7b8c4131e39f8a843a856ae3909
가장 덜 공격적인 수정 방법은 Effect 외부에서 `roomId``serverUrl`을 읽은 다음 Effect가 이러한 기본 값에 의존하도록 만드는 것입니다(의도치 않게 변경할 수 없음). Effect 내부에서 객체를 생성하면 `createConnection`으로 전달됩니다:
<Sandpack>
Expand Down

0 comments on commit 319d1d2

Please sign in to comment.