Skip to content

Commit d4dfebe

Browse files
committed
fix : build errod fix
1 parent 41b7170 commit d4dfebe

File tree

5 files changed

+1
-10
lines changed

5 files changed

+1
-10
lines changed

src/app/(pages)/(auth)/auth/kakao/callback/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {

src/app/(pages)/(main)/home/_components/owner-intro.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { useUserOnboarding } from '@/hooks/queries/use-user-onboarding';
44

55
export 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'>

src/app/(pages)/(main)/make-video/_components/make-video-input-ui.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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 => {

src/app/(pages)/(main)/make-video/_components/video-image-upload.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
'영상 생성에 실패했습니다. 새로고침 후 다시 시도해주세요.',

src/components/store-add-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)