Update imports batch 61
cgen-7aa92e30710f470a9e953ab1ae564a55
This commit is contained in:
parent
8063e4abd3
commit
d628272fec
5 changed files with 5 additions and 5 deletions
|
|
@ -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) {
|
||||
const admin = getAdminClient();
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
const admin = getAdminClient();
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { supabase } from "../_supabase";
|
||||
import { supabase } from "../_supabase.js";
|
||||
|
||||
export default async (req: Request) => {
|
||||
if (req.method !== "GET") {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { supabase } from "../_supabase";
|
||||
import { supabase } from "../_supabase.js";
|
||||
|
||||
export default async (req: Request) => {
|
||||
if (req.method !== "GET") {
|
||||
|
|
|
|||
|
|
@ -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 !== "POST")
|
||||
|
|
|
|||
Loading…
Reference in a new issue