As in title, only the slash commands work, the traditional/prefixed ones do not.
Here's my code in case you need to look at it
import discord
from discord.ext import bridge
import dotenv
import os
dotenv.load_dotenv()
token = str(os.getenv("TOKEN"))
intents = discord.Intents()
intents.message_content = True
bot = bridge.Bot(command_prefix=">", intents=intents)
@bot.bridge_command()
async def hello(ctx):
await ctx.respond("Hello!")
bot.run(token)