diff --git a/olgram/commands/menu.py b/olgram/commands/menu.py
index a491f76..2fa2991 100644
--- a/olgram/commands/menu.py
+++ b/olgram/commands/menu.py
@@ -170,8 +170,8 @@ async def send_bot_settings_menu(bot: Bot, call: types.CallbackQuery):
thread_turn = "включены" if bot.enable_threads else "выключены"
info_turn = "включена" if bot.enable_additional_info else "выключена"
text = dedent(f"""
- Потоки сообщений: {thread_turn}\n
- Дополнительная информация: {info_turn}\n
+ Потоки сообщений: {thread_turn}
+ Дополнительная информация: {info_turn}
""")
await edit_or_create(call, text, reply_markup=keyboard, parse_mode="HTML")