resolved type errors and other proc. app build error

This commit is contained in:
user
2026-03-02 19:23:59 +02:00
parent 6069a16d80
commit be45cc3fa7
7 changed files with 32 additions and 17 deletions

View File

@@ -145,9 +145,11 @@ export async function processImage(
return {
processed: true,
originalFile: inputBuffer,
processedFile: processedBuffer,
thumbnail: thumbnailBuffer,
originalFile: Uint8Array.from(inputBuffer),
processedFile: Uint8Array.from(processedBuffer),
thumbnail: thumbnailBuffer
? Uint8Array.from(thumbnailBuffer)
: undefined,
metadata,
};
} catch (error) {