Skip to content

Commit 7ef20ed

Browse files
authored
Merge pull request #451 from msinha569/fix/duplicate-tick-clean
Fix: remove duplicate tick and overflow issue in Fast LLM Selection (#446)
2 parents deeae5e + 732dace commit 7ef20ed

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

surfsense_web/components/chat/ChatInputGroup.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,7 @@ const LLMSelector = React.memo(() => {
483483
</p>
484484
</div>
485485
</div>
486-
{preferences.fast_llm_id === config.id && (
487-
<div className="flex h-5 w-5 items-center justify-center rounded-full bg-primary ml-2 flex-shrink-0">
488-
<Check className="h-3 w-3 text-primary-foreground" />
489-
</div>
490-
)}
486+
491487
</div>
492488
</SelectItem>
493489
))}

0 commit comments

Comments
 (0)