File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/uikit-react-native/src/hooks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ const useMentionSuggestion = (params: {
90
90
} else {
91
91
return (
92
92
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.
95
95
. sort ( ( a , b ) => a . nickname ?. toLowerCase ( ) . localeCompare ( b . nickname . toLowerCase ( ) ) )
96
96
. filter (
97
97
( member ) =>
You can’t perform that action at this time.
0 commit comments