Skip to content

Commit

Permalink
Fix: sample generator inserts userId into chat.content
Browse files Browse the repository at this point in the history
  • Loading branch information
kmc7468 committed Jan 21, 2025
1 parent 1338fcc commit 0f7c9dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sampleGenerator/src/testData.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const generateJoinAbortChat = async (roomId, userOid, isJoining, time) => {
roomId: roomId,
type: isJoining ? "in" : "out",
authorId: user._id,
content: user.id,
content: user._id,
time: time,
isValid: false,
});
Expand Down

0 comments on commit 0f7c9dd

Please sign in to comment.