Skip to content

Commit

Permalink
fix: private-study-score error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Apr 18, 2024
1 parent 2e4c94b commit 903b676
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 903b676

Please sign in to comment.