Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/cloudflare-workers/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2246,8 +2246,7 @@ app.post('/v1/apps', async (c) => {
success: false,
error: 'EMAIL_ALREADY_REGISTERED',
message: `Email ${error.email} is already registered.`,
existing_app_id: error.existing_app_id,
recovery: `POST /v1/auth/recover with { "email": "${error.email}" } to recover your credentials.`,
recovery: `POST /v1/auth/recover with { "email": "${error.email}" } to receive a BOTCHA code by email. Your human can then visit https://botcha.ai, click "Account", and enter the code to retrieve their app_id and share it with you.`,
}, 409);
}
return c.json({
Expand Down
Loading