Skip to content

Commit

Permalink
update moonpay environment
Browse files Browse the repository at this point in the history
  • Loading branch information
rudy5348 committed Jul 16, 2024
1 parent 95be4f0 commit 79a5c4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Moonpay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function MoonpayBuy(props: { children: ReactNode }) {
}
const moonPaySdk = data({
flow: 'buy',
environment: 'sandbox',
environment: 'production',
variant: 'overlay',
params: {
apiKey: process.env.NEXT_PUBLIC_MOON_PAY_KEY ?? '',
Expand Down Expand Up @@ -47,7 +47,7 @@ export function MoonpaySell(props: { children: ReactNode }) {
}
const moonPaySdk = data({
flow: 'sell',
environment: 'sandbox',
environment: 'production',
variant: 'overlay',
params: {
apiKey: process.env.NEXT_PUBLIC_MOON_PAY_KEY ?? '',
Expand Down

0 comments on commit 79a5c4c

Please sign in to comment.