Remove Waitlist
Remove the pre-launch waitlist and coming-soon page.
Steps
-
Delete directories and files:
app/api/waitlist/(waitlist signup endpoint)hooks/core/use-waitlist.ts(client-side waitlist hooks)- Coming-soon component from
components/(search forcoming-soon)
-
Update Prisma schema (
prisma/schema.prisma):- Remove the
WaitlistEntrymodel
- Remove the
-
Disable the feature flags: Set
NEXT_PUBLIC_ENABLE_WAITLIST=falseandNEXT_PUBLIC_COMING_SOON=falsein.env, or delete the lines fromlib/config/features.ts. -
Clean up references: Remove any waitlist section renders from landing page components.
-
Run
pnpm db:pushto sync the schema.