File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import LoginComplete from '@pages/Login/LoginComplete';
77
88import SignUp from '@pages/SignUp' ;
99import TermsAgreement from '@pages/SignUp/TermsAgreement' ;
10+ import PickMyStyle from '@pages/SignUp/PickMyStyle' ;
1011
1112import Profile from '@pages/Profile' ;
1213import ProfileEdit from '@pages/Profile/ProfileEdit' ;
@@ -64,6 +65,7 @@ const publicRoutes = [
6465
6566 { path : '/signup' , element : < SignUp /> } ,
6667 { path : '/signup/terms-agreement' , element : < TermsAgreement /> } ,
68+ { path : '/signup/pick-my-style' , element : < PickMyStyle /> } ,
6769] ;
6870
6971const App : React . FC = ( ) => {
Original file line number Diff line number Diff line change 1+ const PickMyStyle : React . FC = ( ) => {
2+ return < > ㅋㅋㅋ</ > ;
3+ } ;
4+
5+ export default PickMyStyle ;
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ const TermsAgreement: React.FC = () => {
6767 try {
6868 const response = await postTermsAgreementApi ( currentUserId ) ;
6969 console . log ( response ) ;
70- navigate ( '/' ) ; // 성공 시 홈으로 이동
70+ navigate ( '/signup/pick-my-style ' ) ; // 성공 시 취향 선택 UI로 이동
7171 } catch ( error ) {
7272 console . error ( '약관 동의 API 호출 실패:' , error ) ;
7373 const errorMessage = handleError ( error ) ;
You can’t perform that action at this time.
0 commit comments