Skip to content

Commit aff9be0

Browse files
committed
feat: 축제 관리 신청 accepted 삭제 기능 추가
1 parent c478287 commit aff9be0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/pages/SettingsFestivalMyManageDetail/components/FestivalPermissionButtons.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ const FestivalPermissionButtons = ({
2525
<Button variant="secondary" className="flex-1" onClick={goBack}>
2626
돌아가기
2727
</Button>
28-
28+
{state === 'ACCEPTED' && (
29+
<Button variant="secondary" className="flex-1 text-red-600 border-red-300 hover:bg-red-50" onClick={handleDelete}>
30+
삭제
31+
</Button>
32+
)}
2933
{/* PENDING 상태: 수정/삭제 가능 */}
3034
{state === 'PENDING' && (
3135
<>

0 commit comments

Comments
 (0)