I have created a Python Telegram Bot with an Inline Keyboard multi-level menu.
The idea behind the implementation is so that people can switch between different categories within a restaurant menu (eg. Pasta and Mains) to see the items that are listed under each individual category.
I am using edit_message_text from the Telebot library to edit the message such that the markup returned is the reply markup for the next menu. The issue is that in a group chat, this changes the menu on screen for every user, so effectively only one person can use the bot at the same time.
Is there a way to do it such that I can do this menu system using Inline Keyboard Buttons, without having it change for everyone? I want only the user to see the changes when a menu is switched.