refactor: update imports in waitlist API and library to ensure consistent usage of drizzle-orm functions

This commit is contained in:
ANAGO Ronnel
2025-06-26 02:51:17 +02:00
parent a8d6bbd03a
commit ebb3456c10
3 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,6 @@
import { NextRequest, NextResponse } from "next/server";
import { db } from "@opencut/db";
import { db, eq } from "@opencut/db";
import { waitlist } from "@opencut/db/schema";
import { eq } from "drizzle-orm";
import { nanoid } from "nanoid";
import { waitlistRateLimit } from "@/lib/rate-limit";
import { z } from "zod";