feat: Implement Direct Messaging with new frontend components, user search, and backend read state management.
All checks were successful
Build and Release / build-and-release (push) Successful in 10m9s

This commit is contained in:
Bryan1029384756
2026-02-11 08:01:51 -06:00
parent 44814011fe
commit e773ab41ae
10 changed files with 154 additions and 30 deletions

View File

@@ -104,7 +104,7 @@ export const getLatestMessageTimestamps = query({
if (latestMsg) {
results.push({
channelId,
latestTimestamp: latestMsg._creationTime,
latestTimestamp: Math.floor(latestMsg._creationTime),
});
}
}