Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion actions/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

"use server"

import { unstable_after as after } from "next/server"
import { after } from "next/server"
import { z } from "zod"
import { providers, signIn, signOut } from "@/auth"
import { captureEvent } from "@/lib/capture-event"
Expand Down
2 changes: 1 addition & 1 deletion actions/newsletter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

"use server"

import { unstable_after as after } from "next/server"
import { after } from "next/server"
import { Resend } from "resend"
import { z } from "zod"
import { captureEvent } from "@/lib/capture-event"
Expand Down
2 changes: 1 addition & 1 deletion app/(marketing)/checkout/thank-you/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from "next/link"
import { unstable_after as after } from "next/server"
import { after } from "next/server"
import { checkout } from "@/services/checkout"
import { captureEvent } from "@/lib/capture-event"
import { appName } from "@/lib/constants"
Expand Down
1 change: 0 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { withSentryConfig } from "@sentry/nextjs"

const nextConfig: NextConfig = {
experimental: {
after: true,
reactCompiler: true,
},
images: {
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@
"@stripe/react-stripe-js": "^2.8.0",
"@stripe/stripe-js": "^4.3.0",
"@vercel/postgres": "^0.9.0",
"babel-plugin-react-compiler": "19.0.0-beta-0dec889-20241115",
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"import-in-the-middle": "^1.11.2",
"lucide-react": "^0.436.0",
"nanoid": "^5.0.7",
"next": "15.0.3",
"next": "15.1.0",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.3.0",
"posthog-js": "^1.161.5",
"posthog-node": "^4.2.0",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "^4.0.13",
"react-is": "19.0.0-rc-02c0e824-20241028",
"react-is": "19.0.0",
"recharts": "2.13.0-alpha.5",
"require-in-the-middle": "^7.4.0",
"resend": "^4.0.0",
Expand All @@ -60,11 +60,11 @@
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^20.12.13",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"drizzle-kit": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-next": "15.0.3",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.0",
"postcss": "^8",
Expand All @@ -77,15 +77,15 @@
"pnpm": {
"overrides": {
"@types/node": "^20.12.13",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"react-is": "$react-is"
},
"peerDependencyRules": {
"allowedVersions": {
"next": "15.0.3",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028"
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"allowAny": [
"@types/react",
Expand Down
Loading
Loading