Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion handlers/config/api_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ async def show_connectors_by_type(
if is_perpetual:
connectors = [c for c in connectors if c.endswith("_perpetual")]
else:
connectors = [c for c in connectors if not c.endswith("_perpetual")]
connectors = [c for c in connectors if "_perpetual" not in c]

# Store connector list in context
context.user_data["api_key_connectors"] = connectors
Expand Down