fix(profil): update user ID retrieval and improve fetch request error handling

This commit is contained in:
Nils-Johan Gynther
2026-04-18 14:58:52 +02:00
parent a67f9cb2c1
commit 0598e027ac
2 changed files with 43 additions and 6 deletions
+10 -6
View File
@@ -1,19 +1,23 @@
import { auth } from '../../../auth';
import { getAuthHeaders } from '../../../lib/auth-headers';
import AnvandareClient from './AnvandareClient';
export default async function AnvandareTab() {
const session = await auth();
const userId = (session?.user as any)?.userId as number | undefined;
const userId = Number(session?.user?.id ?? 0);
const headers = await getAuthHeaders();
const res = await fetch(
`${process.env.NEXT_PUBLIC_API_URL_INTERNAL ?? 'http://recipe-api:8080'}/api/users`,
{
headers: { Authorization: `Bearer ${(session as any)?.accessToken}` },
cache: 'no-store',
},
{ headers, cache: 'no-store' },
);
if (!res.ok) {
const text = await res.text().catch(() => '');
console.error(`[AnvandareTab] GET /api/users misslyckades: ${res.status}`, text);
}
const users = res.ok ? await res.json() : [];
return <AnvandareClient users={users} currentUserId={userId ?? 0} />;
return <AnvandareClient users={users} currentUserId={userId} />;
}