We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 374f65e commit afacf4eCopy full SHA for afacf4e
2 files changed
supabase/functions/delete-account/index.ts
@@ -105,6 +105,6 @@ serve(async (req) => {
105
return jsonResponse({ success: true }, 200);
106
} catch (error) {
107
console.error("Final error:", error);
108
- return jsonResponse({ error: getErrorMessage(error) }, 400);
+ return jsonResponse({ error: getErrorMessage(error) }, 500);
109
}
110
});
supabase/functions/delete-listing/index.ts
@@ -89,6 +89,6 @@ serve(async (req) => {
89
90
91
92
93
94
0 commit comments