build fixes

This commit is contained in:
makearmy 2025-10-19 18:21:18 -04:00
parent 5e60cff6fa
commit 832b0c393c

View file

@ -1,6 +1,6 @@
// /app/api/support/badges/route.ts
import { NextRequest, NextResponse } from "next/server";
import { fetchMembershipBadges } from "@/lib/memberships.ts";
import { fetchMembershipBadges } from "@/lib/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> {