diff --git a/.changeset/crazy-walls-flash.md b/.changeset/crazy-walls-flash.md new file mode 100644 index 00000000000..270092d1cb2 --- /dev/null +++ b/.changeset/crazy-walls-flash.md @@ -0,0 +1,5 @@ +--- +'@clerk/astro': patch +--- + +Removes `console.log` from CheckoutButton. diff --git a/packages/astro/src/astro-components/unstyled/CheckoutButton.astro b/packages/astro/src/astro-components/unstyled/CheckoutButton.astro index e232b4a9b9a..59a1e73733f 100644 --- a/packages/astro/src/astro-components/unstyled/CheckoutButton.astro +++ b/packages/astro/src/astro-components/unstyled/CheckoutButton.astro @@ -72,8 +72,6 @@ if (asChild) { throw new Error('Wrap `` with a check for an active organization.'); } - console.log('checkoutOptions', checkoutOptions); - if (checkoutOptions.clickIdentifier) { const clickEvent = new CustomEvent('clerk:subscription-complete', { detail: checkoutOptions.clickIdentifier }); checkoutOptions.onSubscriptionComplete = () => {