chore(deps): update dependency typescript to ^5.9.2 (#3722)

* chore(deps): update dependency typescript to ^5.9.2

* fix: typecheck issue

---------

Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
homarr-renovate[bot]
2025-08-01 13:59:35 +02:00
committed by GitHub
parent 0bfb8d845b
commit d66cccb0db
44 changed files with 250 additions and 250 deletions

View File

@@ -103,6 +103,6 @@
"eslint": "^9.32.0",
"node-loader": "^2.1.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
"typescript": "^5.9.2"
}
}

View File

@@ -23,7 +23,7 @@ export async function GET(_req: NextRequest, props: { params: Promise<{ id: stri
headers.set("Content-Type", image.contentType);
headers.set("Content-Length", image.content.length.toString());
return new NextResponse(image.content, {
return new NextResponse(new Uint8Array(image.content), {
status: 200,
headers,
});

View File

@@ -51,6 +51,6 @@
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"tsx": "4.20.3",
"typescript": "^5.8.3"
"typescript": "^5.9.2"
}
}

View File

@@ -37,6 +37,6 @@
"esbuild": "^0.25.8",
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
"typescript": "^5.9.2"
}
}