You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the insert is being made to webhookEvents, but the target of onConflictDoNothing is set to plans.id. Since there is no foreign key relationship between webhookEvents and plans, using plans.id as the target seems incorrect. Shouldn't it be webhookEvents.id instead?
The text was updated successfully, but these errors were encountered:
In the storeWebhookEvent function in src/app/actions.ts, the following code is used:
Currently, the insert is being made to webhookEvents, but the target of onConflictDoNothing is set to plans.id. Since there is no foreign key relationship between webhookEvents and plans, using plans.id as the target seems incorrect. Shouldn't it be webhookEvents.id instead?
The text was updated successfully, but these errors were encountered: