Fix production TypeScript build errors across meetups, media proxy, and join modal.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
eric
2026-06-08 02:41:03 -05:00
parent 59c9072a35
commit 60dfe538b0
3 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ async function objectExists(client: ReturnType<typeof getMinioClient>, bucket: s
}
function passthroughResponse(buffer: Buffer, contentType: string): NextResponse {
return new NextResponse(buffer, {
return new NextResponse(new Uint8Array(buffer), {
status: 200,
headers: {
"Content-Type": contentType,