Skip to content

Commit

Permalink
Merge pull request #114 from DDD-Community/fix/113
Browse files Browse the repository at this point in the history
[Fix/113] 3차 QA
  • Loading branch information
hwanheejung authored Sep 6, 2024
2 parents 01ae53c + 133d608 commit c2f5f03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ const ChangeBoardNameModal = ({
}

return (
<Modal isOpen={isOpen} onClose={onClose}>
<Modal
isOpen={isOpen}
onClose={() => {
setTitle(oldName)
onClose()
}}
>
<Modal.CenterModal icon={<ClipIcon className="translate-y-2" />}>
<Modal.Close />
<Modal.Title>보드 주제 수정</Modal.Title>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Toast/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Toast = ({ isOpen, setClose, message, duration = 3000 }: ToastProps) => {
className={`fixed bottom-10 left-1/2 -translate-x-1/2 transform rounded-3xl bg-gray-1000 bg-opacity-60 px-4 py-1 backdrop-blur-[2px] ${isVisible ? 'opacity-100' : 'opacity-0'} transition-opacity duration-300`}
onTransitionEnd={handleTransitionEnd}
>
<p className="font-jooree text-gray-0">{message}</p>
<p className="whitespace-nowrap font-jooree text-gray-0">{message}</p>
</div>,
document.getElementById('modal-root') as HTMLElement,
)
Expand Down

0 comments on commit c2f5f03

Please sign in to comment.