feedback from review session

This commit is contained in:
Tim Chamberlain
2025-06-02 16:39:27 -05:00
parent 5c69ae666c
commit c70ef3dae8
2 changed files with 44 additions and 16 deletions

View File

@ -91,7 +91,7 @@ function ChipTextField({...props})
for (let k = 0; k < page.length; k++)
{
const result = page[k];
if (result.label === batch[j])
if (result.label.toLowerCase() === batch[j].toLowerCase())
{
chipPVSIds.push(result.id);
newChipColors.push("info");