Skip to content

Commit

Permalink
clear clg in apiRequest for create checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratchet7x5 committed Dec 13, 2024
1 parent f5d5beb commit 2f22ceb
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions web/src/api/apiRequests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ export const fetchEventOrMembershipCheckoutSecret = async (payload: {
priceId: string;
userTicketId: number;
}): Promise<string> => {
console.log(
"fetchEventOrMembershipCheckoutSecret: payload:",
payload.priceId,
payload.userTicketId
);
const response = await apiClient.post(
"/api/stripe/create-checkout",
payload,
Expand All @@ -101,11 +96,6 @@ export const fetchEventOrMembershipCheckoutSecret = async (payload: {
}
);

console.log(
"fetchEventOrMembershipCheckoutSecret: response.data.clientSecret: ",
response.data
);

return response.data.clientSecret;
};

Expand Down

0 comments on commit 2f22ceb

Please sign in to comment.