Skip to content

Commit 46b9d2d

Browse files
[Playground] Use production API URL (#8307)
1 parent 3e9eb49 commit 46b9d2d

File tree

1 file changed

+1
-2
lines changed
  • apps/playground-web/src/app/api/paywall

1 file changed

+1
-2
lines changed

apps/playground-web/src/app/api/paywall/route.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ export async function GET(request: NextRequest) {
1818
// const BACKEND_WALLET_ADDRESS = process.env.ENGINE_BACKEND_SMART_WALLET as string;
1919
const ENGINE_VAULT_ACCESS_TOKEN = process.env
2020
.ENGINE_VAULT_ACCESS_TOKEN as string;
21-
// const API_URL = `https://${process.env.NEXT_PUBLIC_API_URL || "api.thirdweb.com"}`;
22-
const API_URL = "http://localhost:3030";
21+
const API_URL = `https://${process.env.NEXT_PUBLIC_API_URL || "api.thirdweb.com"}`;
2322

2423
const twFacilitator = facilitator({
2524
baseUrl: `${API_URL}/v1/payments/x402`,

0 commit comments

Comments
 (0)