fix(discord): remove default selection from model picker provider dropdown

Discord doesn't fire the select callback when clicking an already-selected
default option (no change detected). This prevented users from selecting
the current provider to browse its models. The 'current' indicator is
already shown via the description field.
This commit is contained in:
Teknium
2026-04-06 23:06:33 -07:00
parent 8e64f795a1
commit 2b79569a07

View File

@@ -2637,7 +2637,6 @@ if DISCORD_AVAILABLE:
discord.SelectOption(
label=label[:100],
value=p["slug"],
default=bool(p.get("is_current")),
description=desc,
)
)