feat(frontend): update layout, UI components, stores, and API route

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-06-18 16:27:15 +01:00
co-authored by Sisyphus
parent fa51c6b2f9
commit 05690af87e
8 changed files with 35 additions and 12 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ async function proxyRequest(request: Request, path: string) {
if (!['GET', 'HEAD'].includes(request.method)) {
const contentType = request.headers.get('content-type') || '';
if (contentType.includes('multipart/form-data')) {
body = request.body;
fetchOptions.duplex = 'half';
body = request.body as BodyInit;
(fetchOptions as Record<string, unknown>).duplex = 'half';
} else {
body = await request.text();
}