This commit is contained in:
Maxim Khlobystov 2018-07-04 13:51:59 -04:00
parent 0902bb33e6
commit fefec54832

View File

@ -95,9 +95,9 @@ const sortUsersByPhoneUser = (a, b) => {
// current user's name is always on top
const sortUsersByCurrent = (a, b) => {
if (a.isCurrent) {
return 1;
} else if (b.isCurrent) {
return -1;
} else if (b.isCurrent) {
return 1;
}
return 0;