Telegram bot на aiogram бот не изменяет текст в сообщений

Бот должен менять шрифт. Он меняет, но только шрифт у первого запроса. На остальные запросы реагирует, а менять может только текст в первом запросе.`

from config import TOKEN
from keyboards import choose_style

from aiogram import Bot
from aiogram.types import CallbackQuery, Message
from aiogram.dispatcher import Dispatcher
from aiogram.utils import executor
from aiogram.utils.markdown import hunderline, hbold, hitalic, hstrikethrough, hspoiler, hcode

bot = Bot(token=TOKEN, parse_mode="HTML")
dp = Dispatcher(bot)


@dp.message_handler(commands=['start'])
async def start_command(message: Message):
    await message.reply(f"Hi. This bot can change the text.\n\nПривет. Это бот может 
конвертировать текст.")
    await fat_text(message)


@dp.message_handler(content_types=['text'])
async def fat_text(message: Message):
    chat_id = message.chat.id
    message = message.text
    await bot.send_message(chat_id, message, reply_markup=choose_style())

@dp.callback_query_handler(text=["bt"])
async def big_text(call: CallbackQuery):
    await call.message.edit_text(text=f"{hbold(message)}", reply_markup=choose_style())

@dp.callback_query_handler(text=["ut"])
async def big_text(call: CallbackQuery):
    await call.message.edit_text(text=f"{hunderline(message)}", reply_markup=choose_style())

@dp.callback_query_handler(text=["stt"])
async def big_text(call: CallbackQuery):
    await call.message.edit_text(text=f"{hstrikethrough(message)}", reply_markup=choose_style())

@dp.callback_query_handler(text=["it"])
async def big_text(call: CallbackQuery):
    await call.message.edit_text(text=f"{hitalic(message)}", reply_markup=choose_style())

@dp.callback_query_handler(text=["st"])
async def big_text(call: CallbackQuery):
    await call.message.edit_text(text=f"{hspoiler(message)}", reply_markup=choose_style())

@dp.callback_query_handler(text=["mt"])
async def big_text(call: CallbackQuery):
    await call.message.edit_text(text=f"{hcode(message)}", reply_markup=choose_style())


if __name__ == '__main__':
    executor.start_polling(dp, skip_updates=True)`

Ответы (0 шт):