Skip to content

Commit 59c1b2d

Browse files
committed
Merge remote-tracking branch 'origin/feat/message-threading-qa' into feat/message-threading-qa
2 parents 6a07692 + f906482 commit 59c1b2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/uikit-react-native/src/hooks/useMentionSuggestion.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ const useMentionSuggestion = (params: {
9090
} else {
9191
return (
9292
freshChannel.members
93-
//When using 'org.webkit:android-jsc', there is a problem with sorting lists that include words starting with uppercase and lowercase letters.
94-
//To ensure consistent sorting regardless of the JSC, we compare the words in lowercase.
93+
// NOTE: When using 'org.webkit:android-jsc', there is a problem with sorting lists that include words starting with uppercase and lowercase letters.
94+
// To ensure consistent sorting regardless of the JSC, we compare the words in lowercase.
9595
.sort((a, b) => a.nickname?.toLowerCase().localeCompare(b.nickname.toLowerCase()))
9696
.filter(
9797
(member) =>

0 commit comments

Comments
 (0)