File tree Expand file tree Collapse file tree
src/pages/Account/AccountSetting Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import imageBasic from '@assets/default/defaultProfile.svg';
1111import leave from '@assets/default/leave.svg' ;
1212import Profile_s from '@assets/default/my-page.svg' ;
1313
14- import ConfirmationModal from '@components/ConfirmationModal/index' ;
1514import { OODDFrame } from '@components/Frame/Frame' ;
1615import Loading from '@components/Loading/index' ;
16+ import Modal from '@components/Modal' ;
1717import { StyledText } from '@components/Text/StyledText' ;
1818import TopBar from '@components/TopBar/index' ;
1919
@@ -111,11 +111,11 @@ const AccountSetting: React.FC = () => {
111111 </ List >
112112
113113 { isLogoutModalOpen && (
114- < ConfirmationModal
114+ < Modal
115115 content = "이 기기에서 정말 로그아웃 할까요?"
116- isCancelButtonVisible = { true }
117- confirm = { { text : '로그아웃 ' , action : handleConfirmLogout } }
118- onCloseModal = { handleCloseModal }
116+ onClose = { handleCloseModal }
117+ button = { { content : '확인 ' , onClick : handleConfirmLogout } }
118+ isCloseButtonVisible = { true }
119119 />
120120 ) }
121121 </ ProfileEditContainer >
You can’t perform that action at this time.
0 commit comments