debug: log token param in ClientPage

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 18:44:56 +02:00
parent 78a65f6ced
commit fca86fde73
+1
View File
@@ -89,6 +89,7 @@ export default async function ClientPage({
params: Promise<{ token: string }>; params: Promise<{ token: string }>;
}) { }) {
const { token } = await params; const { token } = await params;
console.log("[ClientPage] token param:", token);
const clientData = await getCachedClientData(token); const clientData = await getCachedClientData(token);
if (!clientData) notFound(); if (!clientData) notFound();