Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: inverse loading animation color for `Customer Portal` button (#287)

authored by

zahid47 and committed by
GitHub
c436fecf 28fe8a74

+1 -1
+1 -1
apps/web/src/app/app/(dashboard)/[workspaceSlug]/settings/_components/customer-portal-button.tsx
··· 33 33 onClick={getUserCustomerPortal} 34 34 disabled={isPending} 35 35 > 36 - {isPending ? <LoadingAnimation /> : "Customer Portal"} 36 + {isPending ? <LoadingAnimation variant="inverse" /> : "Customer Portal"} 37 37 </Button> 38 38 ); 39 39 }