Skip to content

Commit f906482

Browse files
authored
chore: update note
1 parent 1b59c86 commit f906482

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)