nextjs-subscription-payments icon indicating copy to clipboard operation
nextjs-subscription-payments copied to clipboard

Clone, deploy, and fully customize a SaaS subscription application with Next.js.

Results 120 nextjs-subscription-payments issues
Sort by recently updated
recently updated
newest added

The error below is being thrown on every auth route component (i.e https://github.com/vercel/nextjs-subscription-payments/blob/main/components/ui/AuthForms/Signup.tsx) `Error: React Hook "useRouter" is called conditionally. React Hooks must be called in the exact same order...

Just out of curiosity how come you're importing the supabase createClient() functions on the pages and passing supabase to the query functions as an argument rather than just importing the...

Supabase has come out with their latest build going from 0.3.0 to 0.4.0 where they have ground breaking refactor on cookie setting on the server and in the middleware. See...

**Problem** If I understand the code base correctly it's missing the case when a user is deleted in the database to also delete the stripe record that belongs to it....

Hi all, This is an excellent boiler plate for most SaaS, thank you! For my current project, I stick to the local development option but wanted to use remote supabase...

so for locally development, i ran `stripe:listen` in order to updare the products, prices, etc.. what about production?, how to run the `stripe:listen` on vercel to be always listening for...

Somehow, on localhost this function returns undefined. On test / prod, returns valid ID and everything works. When I console.log(subscriptionId) inside function checkoutWithStripe, I have value on server. But it...

In the **customer.subscription.updated** event the "**current_period_start**" and "**current_period_end**" not update to the latest of subscription object in database(supabase). ``` const manageSubscriptionStatusChange = async ( subscriptionId: string, customerId: string, createAction =...

I want to build a production app with this template. I recently watched this video of uidotdev https://youtu.be/OrliU0e09io?si=9yntB1Lq2PBUgecg. Here, he described the use of tanstack query for making production grade...

Hi folks, I'm coming across this console warning for any navigation in any logged-in route: ``` Using the user object as returned from supabase.auth.getSession() or from some supabase.auth.onAuthStateChange() events could...