prod/dev spelling mistake for stripe redirect uri

This commit is contained in:
Jun-te Kim 2026-01-18 14:40:47 +00:00
parent 7ff2bb4daf
commit 4f741841ab

View file

@ -15,7 +15,7 @@ export async function GET() {
const params = new URLSearchParams({ const params = new URLSearchParams({
response_type: "code", response_type: "code",
client_id: process.env.STRIPE_CLIENT_ID!, client_id: process.env.STRIPE_CLIENT_ID!,
scope: "read_only", scope: "read_write",
redirect_uri: process.env.STRIPE_REDIRECT_URI!, redirect_uri: process.env.STRIPE_REDIRECT_URI!,
}); });