change port 4023 to 4024

This commit is contained in:
Kar k1
2025-08-30 18:28:24 +05:30
parent 7219108342
commit f29889df9a
12 changed files with 27 additions and 27 deletions

View File

@@ -86,7 +86,7 @@ export async function POST(request: NextRequest) {
const phone = '9876543210' // Default phone or fetch from user profile
// Success and failure URLs for balance transactions
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || 'http://localhost:4023'
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || 'http://localhost:4024'
const surl = `${baseUrl}/api/balance/success`
const furl = `${baseUrl}/api/balance/failure`

View File

@@ -61,7 +61,7 @@ export async function POST(request: NextRequest) {
const phone = '9876543210' // Default phone or fetch from user profile
// Success and failure URLs
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || 'http://localhost:4023'
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || 'http://localhost:4024'
const surl = `${baseUrl}/api/payments/success`
const furl = `${baseUrl}/api/payments/failure`