Skip to content

Commit

Permalink
fix: 수정 가능 권한에 회장단 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
geongyu09 committed Sep 19, 2024
1 parent 5829277 commit 8d10216
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ const ApplicantDetailLeft = ({ data, cardId, generation }: DetailLeftProps) => {
<>
<CustomResource
data={data}
ableToEdit={userData?.role === "ROLE_OPERATION"}
ableToEdit={
userData?.role === "ROLE_OPERATION" ||
userData?.role === "ROLE_PRESIDENT"
}
onClickPass={onClickPass}
onClickNonPass={onClickNonPass}
/>
Expand Down

0 comments on commit 8d10216

Please sign in to comment.