Skip to content

Commit

Permalink
remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
prtcl committed Jul 9, 2024
1 parent c578c0c commit 549c9ca
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions convex/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ export const reorderProjects = internalMutation({
},
handler: async (ctx, { id: targetId, order: targetOrder }) => {
const projects = await ctx.db.query('projects').collect();

console.log(projects);

const { updates } = projects
.sort((a, b) => a.order - b.order)
.reduce<{ updates: Map<Id<'projects'>, number>; prev: number }>(
Expand Down

0 comments on commit 549c9ca

Please sign in to comment.