-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Fix updateName function #313
base: main
Are you sure you want to change the base?
Conversation
Added support for Supabase AI Clarified documentation for local Supabase setup Updated dependencies
@chriscarrollsmith is attempting to deploy a commit to the Vercel Solutions Team on Vercel. A member of the Team first needs to authorize it. |
@@ -3,14 +3,15 @@ | |||
"version": "0.0.0", | |||
"license": "MIT", | |||
"scripts": { | |||
"dev": "next dev --turbo", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's keep this and please share the errors you're seeing! We'd like to fix them. Could you also try on the latest next@canary
please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Regenerated database types to fix Issue 297 Enhanced README OAuth instructions and added a note on controlling display sequence for Stripe products
PR updated as follows:
|
Yeah, go ahead and keep |
@@ -95,7 +97,7 @@ For example, you can create business models with different pricing tiers, e.g.: | |||
- Price 1: 20 USD per month | |||
- Price 2: 200 USD per year | |||
|
|||
Optionally, to speed up the setup, we have added a [fixtures file](fixtures/stripe-fixtures.json) to bootstrap test product and pricing data in your Stripe account. The [Stripe CLI](https://stripe.com/docs/stripe-cli#install) `fixtures` command executes a series of API requests defined in this JSON file. Simply run `stripe fixtures fixtures/stripe-fixtures.json`. | |||
Optionally, to speed up the setup, we have added a [fixtures file](fixtures/stripe-fixtures.json) to bootstrap test product and pricing data in your Stripe account. The [Stripe CLI](https://stripe.com/docs/stripe-cli#install) `fixtures` command executes a series of API requests defined in this JSON file. Simply run `stripe fixtures fixtures/stripe-fixtures.json`. (Note the use of a numerical index in the product metadata to control display sequence in the UI). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
omg thank you for this note! You just helped me figure out how to sequence my products!
You're welcome! :)
…On Fri, May 10, 2024, 2:51 PM Kyle Thornton ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In README.md
<#313 (comment)>
:
> @@ -95,7 +97,7 @@ For example, you can create business models with different pricing tiers, e.g.:
- Price 1: 20 USD per month
- Price 2: 200 USD per year
-Optionally, to speed up the setup, we have added a [fixtures file](fixtures/stripe-fixtures.json) to bootstrap test product and pricing data in your Stripe account. The [Stripe CLI](https://stripe.com/docs/stripe-cli#install) `fixtures` command executes a series of API requests defined in this JSON file. Simply run `stripe fixtures fixtures/stripe-fixtures.json`.
+Optionally, to speed up the setup, we have added a [fixtures file](fixtures/stripe-fixtures.json) to bootstrap test product and pricing data in your Stripe account. The [Stripe CLI](https://stripe.com/docs/stripe-cli#install) `fixtures` command executes a series of API requests defined in this JSON file. Simply run `stripe fixtures fixtures/stripe-fixtures.json`. (Note the use of a numerical index in the product metadata to control display sequence in the UI).
omg thank you for this note! You just helped me figure out how to sequence
my products!
—
Reply to this email directly, view it on GitHub
<#313 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ASCYPGPDDYO2M7HMW6S2CYLZBU6NNAVCNFSM6AAAAABEOTL22OVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDANJQHEYTMOJRGM>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
updateName
function so it changes the public.users table rather than the auth.users table (which was problematic for reasons laid out in the issue)--turbo
flag fromdev
command in package.json, which was breaking some dependencies (UPDATE: we're keeping --turbo but updating to next@canary).env
or setup will fail)priceData
#297: Restores missing types for two columns in theprices
table