From d09aa90cbe7462cfd5da463b0fbc3e307bb7c3f5 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 05:03:04 +0000 Subject: [PATCH] Update _supabase imports to include .js extension - batch 1 cgen-466e9de5fa2c4a0a985ce8833e93a8ba --- api/devlink/opportunities.ts | 2 +- api/devlink/profile.ts | 2 +- api/devlink/teams.ts | 2 +- api/gameforge/tasks.ts | 2 +- api/roblox-callback.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/devlink/opportunities.ts b/api/devlink/opportunities.ts index db79b68a..9a3ff699 100644 --- a/api/devlink/opportunities.ts +++ b/api/devlink/opportunities.ts @@ -1,4 +1,4 @@ -import { supabase } from "../_supabase"; +import { supabase } from "../_supabase.js"; export default async (req: Request) => { if (req.method !== "GET") { diff --git a/api/devlink/profile.ts b/api/devlink/profile.ts index 7ce5150e..123f7c4f 100644 --- a/api/devlink/profile.ts +++ b/api/devlink/profile.ts @@ -1,4 +1,4 @@ -import { supabase } from "../_supabase"; +import { supabase } from "../_supabase.js"; export default async (req: Request) => { if (req.method !== "GET") { diff --git a/api/devlink/teams.ts b/api/devlink/teams.ts index a25d24d1..d4937db2 100644 --- a/api/devlink/teams.ts +++ b/api/devlink/teams.ts @@ -1,4 +1,4 @@ -import { supabase } from "../_supabase"; +import { supabase } from "../_supabase.js"; export default async (req: Request) => { if (req.method !== "GET") { diff --git a/api/gameforge/tasks.ts b/api/gameforge/tasks.ts index 9cea7551..6ad96f36 100644 --- a/api/gameforge/tasks.ts +++ b/api/gameforge/tasks.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from "@vercel/node"; -import { getAdminClient } from "../_supabase"; +import { getAdminClient } from "../_supabase.js"; const admin = getAdminClient(); diff --git a/api/roblox-callback.ts b/api/roblox-callback.ts index 319a2de8..8948305f 100644 --- a/api/roblox-callback.ts +++ b/api/roblox-callback.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from "@vercel/node"; -import { getAdminClient } from "./_supabase"; +import { getAdminClient } from "./_supabase.js"; export default async function handler(req: VercelRequest, res: VercelResponse) { if (req.method === "GET") {