diff --git a/Modules/submenu.py b/Modules/submenu.py index 2549fdc..4560829 100644 --- a/Modules/submenu.py +++ b/Modules/submenu.py @@ -68,7 +68,7 @@ def build_submenu(menu_title, actions=None, module=None): status = f"{Fore.GREEN}✔️ " if action_status[key] else f"❌" # Highlight the key and description based on highlight status if key == "ALL": - print(f"{Fore.BLUE}[{key}]{Style.RESET_ALL} {status} {action['description']}") + print(f"{Fore.BLUE}[{key}]{Style.RESET_ALL} {status} {action['description']}{Style.RESET_ALL}") elif highlight_status[key]: print(f"{Style.RESET_ALL}[{key}] {Fore.YELLOW}💡 {action['description']}{Style.RESET_ALL}") else: