build fixes

This commit is contained in:
makearmy 2025-10-19 18:07:35 -04:00
parent 59bc5303c7
commit 2a4b3d4199

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/memberships.ts";
// Replace this with your real auth lookup if/when you wire it in
async function getCurrentUser(req: NextRequest): Promise<{ id?: string; email?: string } | null> {