We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c478287 commit aff9be0Copy full SHA for aff9be0
1 file changed
src/pages/SettingsFestivalMyManageDetail/components/FestivalPermissionButtons.tsx
@@ -25,7 +25,11 @@ const FestivalPermissionButtons = ({
25
<Button variant="secondary" className="flex-1" onClick={goBack}>
26
돌아가기
27
</Button>
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
+ )}
33
{/* PENDING 상태: 수정/삭제 가능 */}
34
{state === 'PENDING' && (
35
<>
0 commit comments