Skip to content

Commit 4eb4c31

Browse files
authored
Merge pull request #5428 from Dakai/main
Add a space between model and provider in ModelSelector to improve readability.
2 parents df62736 + 79cfbac commit 4eb4c31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/chat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ export function ChatActions(props: {
624624
items={models.map((m) => ({
625625
title: `${m.displayName}${
626626
m?.provider?.providerName
627-
? "(" + m?.provider?.providerName + ")"
627+
? " (" + m?.provider?.providerName + ")"
628628
: ""
629629
}`,
630630
value: `${m.name}@${m?.provider?.providerName}`,

0 commit comments

Comments
 (0)