Skip to content

Commit

Permalink
fix: 모달 글자 오류 변경
Browse files Browse the repository at this point in the history
fix: 모달 글자 오류 변경
  • Loading branch information
klmhyeonwoo authored Jan 29, 2024
2 parents 0471307 + e289139 commit efaf7d7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/app/comment/comment-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ export const CommentFormPage = () => {
description: "지금 돌아가면 이미지와 텍스트 내용이 삭제돼요",
},
{
text: "그만두기",
text: "계속 작성",
},
{
text: "계속 작성",
text: "그만두기",
},
);

Expand Down
4 changes: 2 additions & 2 deletions src/app/post/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ export const Post = () => {
description: "지금 돌아가면 이미지와 텍스트 내용이 삭제돼요.",
},
{
text: "돌아가기",
text: "계속 작성",
},
{
text: "계속 작성",
text: "돌아가기",
},
);

Expand Down
4 changes: 2 additions & 2 deletions src/components/app/archive/marble-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export const MarbleCard = ({ cardData }: Props) => {
description: "게시물과 쌓인 반응이 모두 삭제돼요.",
},
{
text: "삭제",
text: "취소",
},
{
text: "취소",
text: "삭제",
},
);

Expand Down
4 changes: 2 additions & 2 deletions src/components/app/archive/marble-detail-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ export const MarbleDetailCard = forwardRef<HTMLDivElement, Props>(
description: "삭제된 칭찬반응은 복구할 수 없어요",
},
{
text: "삭제",
text: "취소",
},
{
text: "취소",
text: "삭제",
},
);

Expand Down
4 changes: 2 additions & 2 deletions src/components/app/detail/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ export const Menu = ({
description: "게시물과 쌓인 반응이 모두 삭제돼요",
},
{
text: "삭제",
text: "취소",
},
{
text: "취소",
text: "삭제",
},
);

Expand Down

0 comments on commit efaf7d7

Please sign in to comment.