mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-30 04:30:01 +02:00
Keep button loading when redirecting
This commit is contained in:
@@ -56,6 +56,7 @@ export function BuyButton(props: BuyButtonProps) {
|
||||
const {
|
||||
mutate: createCheckoutSession,
|
||||
isPending: isCreatingCheckoutSession,
|
||||
isSuccess: isCheckoutSessionCreated,
|
||||
} = useMutation(
|
||||
{
|
||||
mutationFn: (body: CreateCheckoutSessionBody) => {
|
||||
@@ -147,6 +148,7 @@ export function BuyButton(props: BuyButtonProps) {
|
||||
|
||||
const isLoadingPricing =
|
||||
isFakeLoading ||
|
||||
isCheckoutSessionCreated ||
|
||||
isLoadingPrice ||
|
||||
!coursePricing ||
|
||||
isLoadingCourseProgress ||
|
||||
|
Reference in New Issue
Block a user