diff --git a/src/utils/profileHelper.ts b/src/utils/profileHelper.ts index 29f70d4..ac42db2 100644 --- a/src/utils/profileHelper.ts +++ b/src/utils/profileHelper.ts @@ -50,7 +50,7 @@ export const checkIsFoundTag = (profileTag: string, searchTag: string) => { const sTagLowerCase = searchTag.toLowerCase(); const pTagLowerCase = profileTag.toLowerCase(); - const isExactMatch = pTagLowerCase === searchTag; + const isExactMatch = pTagLowerCase === sTagLowerCase; if (isExactMatch) return true; const isWithJsOrDotJSMatch =