Add base64 image debugging
This commit is contained in:
parent
2f7f414397
commit
6b7e328389
@ -26,6 +26,12 @@ 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)
|
||||
|
||||
@ -24,6 +24,10 @@ export default function PhotoEditPageClient({
|
||||
imageThumbnailBase64: string
|
||||
blurData: string
|
||||
}) {
|
||||
console.log({
|
||||
imageThumbnailBase64,
|
||||
blurData,
|
||||
})
|
||||
const photoForm = convertPhotoToFormData(photo);
|
||||
|
||||
const {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user