fix conversationId comparision bug using integer format

fix-dropdown
taehoon 5 years ago
parent 01552d0b45
commit a27a2f78ac

@ -309,7 +309,7 @@ export const parseNotification = (data) => {
}
output.created_at = new Date(data.created_at)
output.id = data.id
output.id = parseInt(data.id)
return output
}

Loading…
Cancel
Save