You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: enable share image generation for repo analysis pages
ShareActions was passing jobId as the userId path param, causing 404s.
Now passes userId separately and appends ?jobId= to API URLs. The OG
share route supports jobId by fetching from vibe_insights and
analysis_jobs instead of user_profiles.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
console.error(`Profile not found for userId: ${userId}`);
77
-
returnnewResponse("Profile not found - check if userId is correct or if RLS policies prevent access (Service Role Key required for private profiles)",{status: 404});
129
+
console.error(`Profile not found for userId: ${userId}${jobId ? `, jobId: ${jobId}` : ""}`);
130
+
returnnewResponse("Profile not found",{status: 404});
0 commit comments