-
Notifications
You must be signed in to change notification settings - Fork 6
폴더 수정/삭제 모달 기능 구현 #92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,7 +56,12 @@ export const Modal = () => { | |
| /> | ||
| ); | ||
| case "EditModal": | ||
| return <EditModal folderName={props.folderName || "폴더이름"} />; | ||
| return ( | ||
| <EditModal | ||
| folderName={props.folderName || "폴더이름"} | ||
| folderId={props.folderId || 1} | ||
|
||
| /> | ||
| ); | ||
| case "SNSModal": | ||
| return <SNSModal folderName={props.folderName || "폴더이름"} />; | ||
| case "EditLink": | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
value가 없으면 모달이 닫히고 끝나는 건가요??
"값이 반드시 필요합니다" 와 같은 경고 toast가 뜨면 자연스러울 것 같습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네 요건 toast 브랜치에서 작업해서 따로 올릴게요!