diff --git a/src/app/admin/photos/[photoId]/edit/page.tsx b/src/app/admin/photos/[photoId]/edit/page.tsx index 347d3911..6321b102 100644 --- a/src/app/admin/photos/[photoId]/edit/page.tsx +++ b/src/app/admin/photos/[photoId]/edit/page.tsx @@ -26,12 +26,6 @@ export default async function PhotoEditPage({ ? await resizeImageFromUrl(getNextImageUrlForManipulation(photo.url)) : ''; - console.log({ - photoUrl: photo.url, - nextImageUrl: getNextImageUrlForManipulation(photo.url), - imageThumbnailBase64, - }); - const blurData = BLUR_ENABLED ? await blurImageFromUrl( getNextImageUrlForManipulation(photo.url) diff --git a/src/photo/PhotoEditPageClient.tsx b/src/photo/PhotoEditPageClient.tsx index 73a02c8f..33b7bcec 100644 --- a/src/photo/PhotoEditPageClient.tsx +++ b/src/photo/PhotoEditPageClient.tsx @@ -24,10 +24,6 @@ export default function PhotoEditPageClient({ imageThumbnailBase64: string blurData: string }) { - console.log({ - imageThumbnailBase64, - blurData, - }) const photoForm = convertPhotoToFormData(photo); const { diff --git a/src/photo/ai/useAiImageQuery.ts b/src/photo/ai/useAiImageQuery.ts index dadf1efb..fcb8e10e 100644 --- a/src/photo/ai/useAiImageQuery.ts +++ b/src/photo/ai/useAiImageQuery.ts @@ -12,7 +12,6 @@ export default function useAiImageQuery( const [isLoading, setIsLoading] = useState(false); const request = useCallback(async () => { - console.log('useAiImageQuery', imageBase64?.slice(0, 48), query); if (imageBase64) { setIsLoading(true); setText('');