diff --git a/app/panel/inspect/account/[id]/page.tsx b/app/panel/inspect/account/[id]/page.tsx index d9d5795..c57e847 100644 --- a/app/panel/inspect/account/[id]/page.tsx +++ b/app/panel/inspect/account/[id]/page.tsx @@ -35,7 +35,7 @@ export default async function User({ if (!account) return notFound(); const user = await fetchUserById(params.id); - const sessions = await fetchSessionsByAccount(params.id); + const sessions = await fetchSessionsByAccount(params.id).catch(() => []); return (