Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
배운 내용
이번 차시에서 배운 내용을 정리해주세요.
추가적으로 공부한 내용
이번 차시에서 추가적으로 공부했던 내용을 적어주세요.
🍪 프론트에서 안전하게 로그인 처리하기 (ft. React)
공부하면서 의문을 가졌던 내용 또는 공유하고자 하는 내용
공부하면서 의문을 가졌던 점, 스터디원들이 알았으면 하는 점, 혹은 함께 토론하고자 하는 내용이 있으면 적어주세요
if (updateResult && updateResult.value) { res.json({ ok: true, body: updateResult.value }); } else { res.json({ ok: false, errorMessage: 'Document not found or not updated.' }); }
이렇게 수정하여 오류는 나지 않도록 하였으나 근본적인 기능 작동오류는 해결하지 못하였습니다.