From c4cf9a6c3d7ce736612586e787c7ac93cce2f00b Mon Sep 17 00:00:00 2001 From: Aleksandar Petkov Date: Tue, 10 Dec 2024 09:12:29 +0200 Subject: [PATCH] chore: Remove idempotency from bodyDto --- apps/api/src/stripe/stripe.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/stripe/stripe.controller.ts b/apps/api/src/stripe/stripe.controller.ts index a20abf84..2a6d4436 100644 --- a/apps/api/src/stripe/stripe.controller.ts +++ b/apps/api/src/stripe/stripe.controller.ts @@ -30,8 +30,8 @@ export class StripeController { @Post('setup-intent') @Public() - createSetupIntent(@Body() body: { idempotencyKey: string }) { - return this.stripeService.createSetupIntent(body) + createSetupIntent() { + return this.stripeService.createSetupIntent() } @Post('create-checkout-session')