File tree Expand file tree Collapse file tree 5 files changed +1
-10
lines changed
(auth)/auth/kakao/callback Expand file tree Collapse file tree 5 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ export default function KakaoCallbackPage() {
4242 } ;
4343 const handleOnboarding = async ( ) => {
4444 const result = await getOnboardingStatus ( ) ;
45- console . log ( 'result' , result ) ;
4645 if ( ! result . termsOfServiceAccepted ) {
4746 redirect ( '/onboarding' ) ;
4847 } else {
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { useUserOnboarding } from '@/hooks/queries/use-user-onboarding';
44
55export function OwnerIntro ( ) {
66 const { data : user } = useUserOnboarding ( ) ;
7- console . log ( 'userInfo' , user ) ;
87
98 return (
109 < header className = 'pb-4 w-full h-auto flex flex-col items-start gap-2' >
Original file line number Diff line number Diff line change @@ -54,12 +54,6 @@ export function MakeVideoInputUi({
5454
5555 const urls = getUploadedUrls ( results ) ;
5656
57- console . log ( '업로드 완료된 URLs:' , { urls } ) ;
58- const imageUrls = urls . filter ( url => url . includes ( 'images/' ) ) ;
59- const videoUrls = urls . find ( url => url . includes ( 'videos/' ) ) ;
60- console . log ( 'imageUrls:' , imageUrls ) ;
61- console . log ( 'videoUrls:' , videoUrls ) ;
62-
6357 // TODO: 추후 백엔드 API 연동 시 여기서 영상 생성 요청
6458 } ,
6559 onUploadError : error => {
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ export function VideoImageUpload() {
5757 storeId : currentStore ?. id ?? '' ,
5858 } )
5959 . then ( response => {
60- console . log ( 'response:' , response ) ;
6160 if ( ! response . videoGenerationId ) {
6261 toast . error (
6362 '영상 생성에 실패했습니다. 새로고침 후 다시 시도해주세요.' ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function StoreAddButton() {
1414 if ( pathname === '/make-video' ) {
1515 router . push ( '/mypage/info?storeAdd=true' ) ;
1616 } else {
17- setStoreAdd ( true ) ;
17+ void setStoreAdd ( true ) ;
1818 }
1919 } }
2020 className = 'px-5 py-2 w-full h-14 flex-center rounded-[15px] bg-gray100 gap-1 hover:bg-gray200 transition-colors duration-300 cursor-pointer'
You can’t perform that action at this time.
0 commit comments