feat: remove sentry log and allow same timestamp (#11100)

This commit is contained in:
Shivam Mishra
2025-03-18 15:08:28 +05:30
committed by GitHub
parent bbfcdb3d42
commit f67b20b203
2 changed files with 2 additions and 15 deletions

View File

@@ -778,7 +778,7 @@ describe('#mutations', () => {
expect(state.allConversations[0].status).toEqual('open');
});
it('should ignore updates with same timestamps', () => {
it('should allow updates with same timestamps', () => {
const state = {
allConversations: [
{
@@ -796,7 +796,7 @@ describe('#mutations', () => {
};
mutations[types.UPDATE_CONVERSATION](state, conversation);
expect(state.allConversations[0].status).toEqual('open');
expect(state.allConversations[0].status).toEqual('resolved');
});
});