Skip to content

Commit

Permalink
refactor: userEmail props 추가 누락된 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seueooo committed Dec 16, 2024
1 parent 14c919c commit 4fcbc8a
Showing 1 changed file with 2 additions and 2 deletions.
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}>
확인
Expand Down

0 comments on commit 4fcbc8a

Please sign in to comment.