mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2024-11-20 13:59:55 +01:00
fix conversationId comparision bug using integer format
This commit is contained in:
parent
01552d0b45
commit
a27a2f78ac
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue