Prettier format pending files

This commit is contained in:
Builder.io 2025-11-16 09:42:50 +00:00
parent 06cf0f11f9
commit 5ef082c44d
2 changed files with 6 additions and 2 deletions

View file

@ -50,7 +50,10 @@ export default async function handler(req: VercelRequest, res: VercelResponse) {
.single();
user = result.data;
} catch (e) {
console.log("[Passport] Username exact match failed, trying ilike:", e?.message);
console.log(
"[Passport] Username exact match failed, trying ilike:",
e?.message,
);
// Try case-insensitive match
try {
const result2 = await admin

View file

@ -10,7 +10,8 @@ import FourOhFourPage from "@/pages/404";
import Index from "@/pages/Index";
import type { AethexUserProfile } from "@/lib/aethex-database-adapter";
const getApiBase = () => typeof window !== "undefined" ? window.location.origin : "";
const getApiBase = () =>
typeof window !== "undefined" ? window.location.origin : "";
interface CreatorPassportResponse {
type: "creator";