diff --git a/apps/bot/src/bot/features/registration.ts b/apps/bot/src/bot/features/registration.ts index 4a8f91b..998df62 100644 --- a/apps/bot/src/bot/features/registration.ts +++ b/apps/bot/src/bot/features/registration.ts @@ -50,9 +50,9 @@ feature.on(':contact', logHandle('contact-registration'), async (ctx) => { documentId: customer.documentId, }); - return ctx.reply(ctx.t('msg-phone-saved'), { - reply_markup: mainMenu, - }); + await ctx.reply(ctx.t('msg-phone-saved'), { ...KEYBOARD_REMOVE }); + + return ctx.reply(ctx.t('support'), { reply_markup: mainMenu }); } // Новый пользователь — создаём и активируем @@ -66,9 +66,9 @@ feature.on(':contact', logHandle('contact-registration'), async (ctx) => { documentId, }); - return ctx.reply(ctx.t('msg-phone-saved'), { - reply_markup: mainMenu, - }); + await ctx.reply(ctx.t('msg-phone-saved'), { ...KEYBOARD_REMOVE }); + + return ctx.reply(ctx.t('support'), { reply_markup: mainMenu }); } catch (error) { return ctx.reply(ctx.t('err-with-details', { error: String(error) })); }