From 2dcf718f816095b3ae007fb7f466aaf91f11ffb2 Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Thu, 7 Jun 2018 15:58:04 -0400 Subject: [PATCH] Fix iOS type error warnings (#1737) --- app/store/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/store/index.js b/app/store/index.js index e47f79186..e49da1589 100644 --- a/app/store/index.js +++ b/app/store/index.js @@ -170,6 +170,9 @@ export default function configureAppStore(initialState) { users: { ...state.entities.users, profilesInChannel, + profilesNotInTeam: [], + profilesWithoutTeam: [], + profilesNotInChannel: [], }, }; mattermostBucket.writeToFile('entities', JSON.stringify(entities), Config.AppGroupId);