From aedd7cb79b16a3475c73592be81301536789d9fa Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 12 Nov 2025 05:54:58 +0000 Subject: [PATCH] completionId: cgen-0316499baf6b4010a77c9e15885e69ad cgen-0316499baf6b4010a77c9e15885e69ad --- client/lib/aethex-social-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/aethex-social-service.ts b/client/lib/aethex-social-service.ts index fd5460fc..4cac86a3 100644 --- a/client/lib/aethex-social-service.ts +++ b/client/lib/aethex-social-service.ts @@ -259,7 +259,7 @@ export const aethexSocialService = { async listMentorshipRequests(userId: string, role?: "mentor" | "mentee") { const qs = new URLSearchParams({ user_id: userId }); if (role) qs.set("role", role); - const resp = await fetch(`/api/mentorship/requests?${qs.toString()}`); + const resp = await fetch(`${API_BASE}/api/mentorship/requests?${qs.toString()}`); if (!resp.ok) return [] as any[]; return (await resp.json()) as any[]; },