-
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
Type error priceData
#297
Comments
Hi! I'm getting the same error, did you manage to fix it? |
@iancuandrei If I remember correctly, I just updated my types. |
I had dropped the 'description' and 'metadata' columns from the database schema in a PR and changed the types accordingly, because these are no longer really used by Stripe. The schema changes got rejected, but the types didn't get changed back. You can run |
FYI, for those that need a bit more guidance on how to drop the columns from supabase:
ALTER TABLE prices
DROP COLUMN description,
DROP COLUMN metadata;
|
Nice work on the update. Thank you.
One error that I am sure everyone is getting is a type error seen below. Someone should update this at some point. Thx.
The text was updated successfully, but these errors were encountered: