Feature/new landing block - #50
Conversation
…tyles and custom fonts
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: af7215fc97
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| setCode(''); | ||
| setStep('code'); |
There was a problem hiding this comment.
Provide a fallback when an account cannot use email codes
When the entered email belongs to an existing user who disabled otpSignInEnabled, the request endpoint deliberately returns 200 without sending a code (src/app/api/auth/email-code/request/route.ts, lines 82-87), but this modal always advances to a screen that only accepts a six-digit code. Those users can therefore never complete quick booking from this flow; provide the same password/Google fallback offered by the main authentication page.
Useful? React with 👍 / 👎.
| data: { | ||
| role: Role.USER, | ||
| ...(name ? { name } : {}) |
There was a problem hiding this comment.
Reconcile auto-activation with the registration messages
For a brand-new quick-booking user, passwordless authorization first sends the welcome email and creates user/admin notifications, after which this transaction immediately changes the account from GUEST to USER. Those messages still state that an administrator must approve the account, the admin notification says the account awaits approval, and the welcome email asks the user to add a name even though this flow already saved it. Every successful new quick booking therefore communicates obsolete account state; the onboarding messages need booking-aware content or must be updated after activation.
Useful? React with 👍 / 👎.
…е уведомлений через Telegram и Email
…иренную диагностику вебхука Telegram
…их и исходящих Telegram запросов + редизайн журнала
… INFO и кликабельность строк по дизайну страницы Сегодня
…нице системного журнала
…lucide в стиле страницы Сегодня
…на из ответа Telegram API при открытии настроек
…TTP статусов и Telegram API запросов
…ates вебхука Telegram
…SV с учетом активных фильтров поиска
…ля и клавиша "💰 Баланс" в меню бота
| const response = await fetch(`https://api.telegram.org/bot${token}/getMe`, { | ||
| method: 'GET', | ||
| headers: { 'Content-Type': 'application/json' } | ||
| }); |
No description provided.