diff --git a/client/web/compose/src/store/user.js b/client/web/compose/src/store/user.js index 3cb087f92..9ace68682 100644 --- a/client/web/compose/src/store/user.js +++ b/client/web/compose/src/store/user.js @@ -70,7 +70,7 @@ export default function (SystemAPI) { // exclude existing & make unique const existing = new Set(getters.set.map(({ userID }) => userID)) - list = [...new Set(list.filter(userID => !existing.has(userID)))] + list = [...new Set(list.filter(userID => userID && !existing.has(userID)))] if (list.length === 0) { // Check for values again