Skip to content

Commit 37e2dd4

Browse files
committed
remove case insensitive matching
1 parent 3a3ee03 commit 37e2dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cliui/select.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ func (m *multiSelectModel) handleCustomInputSubmission() (tea.Model, tea.Cmd) {
517517

518518
// Check for duplicates
519519
for i, opt := range m.options {
520-
if strings.EqualFold(opt.option, m.customInput) {
520+
if opt.option == m.customInput {
521521
// If the option exists but isn't chosen, select it
522522
if !opt.chosen {
523523
opt.chosen = true

0 commit comments

Comments
 (0)