diff --git a/convex/comments.ts b/convex/comments.ts index 42791bf..78ed9ff 100644 --- a/convex/comments.ts +++ b/convex/comments.ts @@ -44,7 +44,6 @@ export const add = mutation({ await ctx.db.patch(skill._id, { stats: { ...skill.stats, comments: skill.stats.comments + 1 }, - updatedAt: Date.now(), }) }, }) @@ -71,7 +70,6 @@ export const remove = mutation({ if (skill) { await ctx.db.patch(skill._id, { stats: { ...skill.stats, comments: Math.max(0, skill.stats.comments - 1) }, - updatedAt: Date.now(), }) }