The exact title match comparison is case-sensitive and might miss issues if there are differences in filename casing between the search query and actual issue titles.
const exactMatch = data.items.find((issue: any) => issue.title.toLowerCase() === fileName.toLowerCase());
Originally posted by @Copilot in #47 (comment)
The exact title match comparison is case-sensitive and might miss issues if there are differences in filename casing between the search query and actual issue titles.
Originally posted by @Copilot in #47 (comment)