Skip to content

Commit 8d10216

Browse files
committed
fix: 수정 가능 권한에 회장단 추가
#202
1 parent 5829277 commit 8d10216

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/components/applicant/_applicant/ApplicantDetailLeft.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ const ApplicantDetailLeft = ({ data, cardId, generation }: DetailLeftProps) => {
5757
<>
5858
<CustomResource
5959
data={data}
60-
ableToEdit={userData?.role === "ROLE_OPERATION"}
60+
ableToEdit={
61+
userData?.role === "ROLE_OPERATION" ||
62+
userData?.role === "ROLE_PRESIDENT"
63+
}
6164
onClickPass={onClickPass}
6265
onClickNonPass={onClickNonPass}
6366
/>

0 commit comments

Comments
 (0)