We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cloned and flowed all the instructions. but I can see following empty screen.
The text was updated successfully, but these errors were encountered:
To anyone who might face the same issue, you have to create products (with pricing) in the strip dashboard, before stating the app.
Sorry, something went wrong.
and also the product.lists has to be updated with type:service
product.lists
type:service
return Promise.all([ stripe.products.list({ type:'service' }), // Default returns 10 products, sorted by most recent creation date stripe.plans.list({}), // Default returns 10 plans, sorted by most recent creation date ]).then(stripeData => { var products = formatProducts(stripeData[0].data); var plans = sortAndFormatPlans(stripeData[1].data); return attachPlansToProducts(plans, products); }).catch(err => { console.error('Error fetching Stripe products and plans: ', err); return []; });
I made a PR
No branches or pull requests
I cloned and flowed all the instructions. but I can see following empty screen.
The text was updated successfully, but these errors were encountered: