Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Fixed intitial state to match reducers state. (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
sudheerDev authored and hmhealey committed Aug 28, 2020
1 parent 7811aec commit 67be2f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/mattermost-redux/src/store/initial_state.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const state = {
channels: {},
channelsInTeam: {},
myMembers: {},
members: {},
membersInChannel: {},
stats: {}
},
posts: {
Expand Down Expand Up @@ -110,10 +110,6 @@ const state = {
status: 'not_started',
error: null
},
leaveChannel: {
status: 'not_started',
error: null
},
joinChannel: {
status: 'not_started',
error: null
Expand All @@ -137,6 +133,10 @@ const state = {
removeChannelMember: {
status: 'not_started',
error: null
},
updateChannelMember: {
status: 'not_started',
error: null
}
},
general: {
Expand Down

0 comments on commit 67be2f2

Please sign in to comment.