Skip to content

Commit d40474f

Browse files
committed
fixed a broken compile
1 parent ff18253 commit d40474f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/convex/shuffle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,6 @@ export const addAll = internalMutation({
184184
titles: v.array(v.string()),
185185
},
186186
handler: async (ctx, { titles }) => {
187-
await Promise.all(titles.map((title) => _addMusic(ctx, { title })));
187+
await Promise.all(titles.map((title) => addMusicHandler(ctx, { title })));
188188
},
189189
});

0 commit comments

Comments
 (0)