Update imports batch 15
cgen-08c6a0301e1a4862a149e49c643a28d2
This commit is contained in:
parent
c8292016cb
commit
fd8ae89af5
5 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
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) {
|
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
||||||
const admin = getAdminClient();
|
const admin = getAdminClient();
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
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) {
|
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
||||||
const admin = getAdminClient();
|
const admin = getAdminClient();
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
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) {
|
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
||||||
const admin = getAdminClient();
|
const admin = getAdminClient();
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
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) {
|
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
||||||
if (req.method !== "GET") {
|
if (req.method !== "GET") {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { supabase } from "../_supabase";
|
import { supabase } from "../_supabase.js";
|
||||||
|
|
||||||
export default async (req: Request) => {
|
export default async (req: Request) => {
|
||||||
if (req.method !== "GET") {
|
if (req.method !== "GET") {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue