-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: userEmail props 추가 누락된 부분 수정
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
src/pages/HomePage/components/ModalContents/Setting/ModalContentsAlert/Complete.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import { AlertModalProps } from '@/pages/HomePage/components/ModalContents/Setting/ModalContentsAlert/ModalContentsAlert'; | ||
import ButtonAlert from '@/pages/HomePage/components/ModalContents/Setting/components/ButtonAlert'; | ||
|
||
const Complete = ({ handleClose }: AlertModalProps) => ( | ||
const Complete = ({ handleClose, userEmail }: AlertModalProps) => ( | ||
<div className="flex flex-col rounded-[0.8rem] bg-gray-bg-04 p-[3rem]"> | ||
<div className="w-[47.2rem]"> | ||
<p className="subhead-bold-22 flex justify-center text-white">[email protected] 계정이</p> | ||
<p className="subhead-bold-22 flex justify-center text-white">{userEmail} 계정이</p> | ||
<p className="subhead-bold-22 mb-[3rem] flex justify-center text-white"> 삭제되었습니다.</p> | ||
<ButtonAlert variant="primary" onClick={handleClose}> | ||
확인 | ||
|