From 4b3097022cf238dfe52976291141d6c36a4cc0aa Mon Sep 17 00:00:00 2001 From: ccruzkauppila Date: Tue, 5 Nov 2024 18:04:16 +0000 Subject: [PATCH] Case-insensitive search for migration combobox --- src/components/ui/MigrationCombobox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/MigrationCombobox.tsx b/src/components/ui/MigrationCombobox.tsx index 6e65623a..f3ab5929 100644 --- a/src/components/ui/MigrationCombobox.tsx +++ b/src/components/ui/MigrationCombobox.tsx @@ -40,7 +40,7 @@ export const MigrationCombobox = () => { ? accountList : accountList.filter( (account) => - account.name.includes(query) || + account.name.toLowerCase().includes(query.toLowerCase()) || account.id.toString().includes(query), );