Update imports batch 56
cgen-c2a40fcf45224474ab3c0d7cbb63440d
This commit is contained in:
parent
ff141b4a56
commit
8063e4abd3
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";
|
||||
|
||||
interface DemoUser {
|
||||
email: string;
|
||||
|
|
|
|||
|
|
@ -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") {
|
||||
|
|
|
|||
|
|
@ -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") {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
if (req.method !== "GET") {
|
||||
|
|
|
|||
Loading…
Reference in a new issue