fix: Access friendLogTable data through its value property.

This commit is contained in:
pa
2026-03-13 10:58:13 +09:00
parent 5abf882c94
commit bee8c0af8e

View File

@@ -368,7 +368,7 @@ export function runDeleteFriendshipFlow(
userId: id,
displayName: ctx.displayName || id
};
friendLogTable.data.push(friendLogHistory);
friendLogTable.value.data.push(friendLogHistory);
database.addFriendLogHistory(friendLogHistory);
notificationStore.queueFriendLogNoty(friendLogHistory);
sharedFeedStore.addEntry(friendLogHistory);