Skip to content

Commit

Permalink
fix: private-study-score error (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL authored Apr 18, 2024
2 parents 2e4c94b + 903b676 commit a3efb6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modals/study/StudyAttendCheckModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ function StudyAttendCheckModal({ setIsModal }: IStudyAttendCheckModal) {
getAlphabet({ alphabet });
setTransferAlphabet(alphabet);
}
const pointObj = POINT_SYSTEM_PLUS.STUDY_ATTEND_CHECK;
const pointObj = isPrivate
? POINT_SYSTEM_PLUS.STUDY_PRIVATE_ATTEND
: POINT_SYSTEM_PLUS.STUDY_ATTEND_CHECK;
getAboutPoint(pointObj);
const studyVoteInfo = getMyStudyVoteInfo(myStudy, session?.user.uid);

Expand Down

0 comments on commit a3efb6c

Please sign in to comment.