Update _supabase imports batch 6-10

cgen-895465f01f924459a7291b32c730ce5e
This commit is contained in:
Builder.io 2025-11-16 05:03:13 +00:00
parent d09aa90cbe
commit c8292016cb
5 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
import { getAdminClient } from "./_supabase";
import { getAdminClient } from "./_supabase.js";
export async function createNotification(
userId: string,

View file

@ -1,5 +1,5 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import { getAdminClient } from "../_supabase";
import { getAdminClient } from "../_supabase.js";
const admin = getAdminClient();

View file

@ -1,5 +1,5 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import { getAdminClient } from "../_supabase";
import { getAdminClient } from "../_supabase.js";
const admin = getAdminClient();

View file

@ -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") {

View file

@ -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") {