Merge branch 'develop' into snyk-fix-308786c27c54530431bea990e509232a

This commit is contained in:
Sojan Jose
2025-05-14 20:17:41 -07:00
committed by GitHub
@@ -78,10 +78,7 @@ export const mutations = {
}
},
[types.SET_ALL_ATTACHMENTS](_state, { id, data }) {
const attachments = _state.attachments[id] || [];
attachments.push(...data);
_state.attachments[id] = [...attachments];
_state.attachments[id] = [...data];
},
[types.SET_MISSING_MESSAGES](_state, { id, data }) {
const [chat] = _state.allConversations.filter(c => c.id === id);