We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff9be0 commit 1387cd9Copy full SHA for 1387cd9
1 file changed
src/pages/SettingsFestivalMyManageDetail/components/FestivalPermissionButtons.tsx
@@ -25,11 +25,15 @@ 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
- )}
+ {state === 'ACCEPTED' && (
+ <Button
+ variant="secondary"
+ className="flex-1 text-red-600 border-red-300 hover:bg-red-50"
+ onClick={handleDelete}
33
+ >
34
+ 삭제
35
+ </Button>
36
+ )}
37
{/* PENDING 상태: 수정/삭제 가능 */}
38
{state === 'PENDING' && (
39
<>
0 commit comments