DEV Community

Cover image for 3 Bugs From Flipping Stripe to Live Mode
Echo Softworks
Echo Softworks

Posted on

3 Bugs From Flipping Stripe to Live Mode

  1. Magic links stopped sending — deleted an old Resend API key as cleanup, forgot it was wired into Supabase’s SMTP. Dashboard just silently failed. Fix: new key, done.

  2. Checkout failed — test-mode connected account, live key can’t touch it. Fix: deleted the test account, redid onboarding live, swapped the new account id in.

  3. Payment succeeded, no email — webhook was scoped to “Connected accounts” only, so it never received checkout.session.completed (that fires on the platform account). No error, just never arrived. Fix: added a second webhook destination scoped to “Your account.”

All fixed and tested end to end now. Building Echo Softworks Community Marketplace (echosoftwork.com) if curious.

Top comments (0)