build fixes

This commit is contained in:
makearmy 2025-10-19 18:05:19 -04:00
parent 912cf71bb9
commit 59bc5303c7
51 changed files with 15390 additions and 448 deletions

View file

@ -1,6 +1,6 @@
// /app/api/support/badges/route.ts
import { NextRequest, NextResponse } from "next/server";
import { fetchMembershipBadges } from "lib/support/memberships";
import { fetchMembershipBadges } from "/lib/support/memberships";
// Replace this with your real auth lookup if/when you wire it in
async function getCurrentUser(req: NextRequest): Promise<{ id?: string; email?: string } | null> {