[bugfix] Main Page: Message Log. fix format error that receive from python.

This commit is contained in:
Sakamoto Shiina
2024-09-10 18:10:52 +09:00
parent ac6b898a46
commit f0cadb1335

View File

@@ -29,7 +29,7 @@ export const useMessage = () => {
};
const updateSentMessageLogById = (payload) => {
updateMessageLogsStatus(updateItemById(data.id, payload.translation));
updateMessageLogsStatus(updateItemById(payload.id, payload.translation));
};
const addSentMessageLog = (payload) => {
const message_object = generateMessageObject(payload, "sent");