Skip to content

Commit

Permalink
fix: 방 수정하기 기능 보류
Browse files Browse the repository at this point in the history
  • Loading branch information
chlwlstlf committed Dec 9, 2024
1 parent aff7438 commit 8c09e29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export type DropdownItem = {

export const dropdownItemsConfig: Record<string, DropdownItem[]> = {
MANAGER: [
{ name: "수정하기", action: "EDIT_ROOM" },
// { name: "수정하기", action: "EDIT_ROOM" },
{ name: "삭제하기", action: "DELETE_ROOM" },
],
PARTICIPATED: [{ name: "방 나가기", action: "EXIT_ROOM" }],
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/constants/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ const GUIDANCE_MESSAGES: Record<string, string> = {
SUB_DESCRIPTION: "조금만 기다려주세요🤗",
DELETE_ROOM: "정말 방을 삭제하시겠습니까?\n모집 마감 후엔 방을 삭제할 수 없습니다.",
EXIT_ROOM: "정말 방을 나가시겠습니까?\n모집 마감 전까진 언제든지 다시 참여할 수 있습니다.",
CREATE_ROOM:
"방을 생성합니다.\n모집 마감 전까지는 방 정보를 수정할 수 있습니다.\n단, 나의 정보는 방 생성 후 변경할 수 없습니다",
// CREATE_ROOM:
// "방을 생성합니다.\n모집 마감 전까지는 방 정보를 수정할 수 있습니다.\n단, 나의 정보는 방 생성 후 변경할 수 없습니다",
CREATE_ROOM: "방을 생성합니다.\n생성된 방은 수정할 수 없습니다.",
EDIT_ROOM: "방 정보를 수정합니다.\n모집 마감 전까지 방 정보를 수정할 수 있습니다.",
EMPTY_PARTICIPANTS: "참여자 목록은 매칭이 시작된 이후 공개됩니다.",
ZERO_PARTICIPANTS: "이 방의 참여자가 없습니다.",
Expand Down

0 comments on commit 8c09e29

Please sign in to comment.