Add dashboard navigation and request timeouts

Added 'Back to Dashboard' buttons to all admin dashboard pages for improved navigation. Introduced AbortSignal timeouts to API client and middleware requests to prevent hanging network calls. Also enabled messaging customers from the order details page if Telegram info is available.
This commit is contained in:
NotII
2025-10-30 18:35:09 +00:00
parent fcba1a853d
commit f0d18a9e67
9 changed files with 70 additions and 19 deletions

View File

@@ -50,6 +50,7 @@ export async function middleware(req: NextRequest) {
method: "GET",
headers,
credentials: 'include',
signal: AbortSignal.timeout(10000), // 10 second timeout
});
console.log(`Middleware: Auth check responded with status ${res.status}`);