Skip to content

Commit c0400a0

Browse files
committed
benchmarks-ts: fix insert_bulk_food
1 parent f87a332 commit c0400a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/benchmarks-ts/src/circles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ spacetimedb.reducer('insert_bulk_circle', { count: t.u32() }, insertBulkCircle);
7070

7171
const insertBulkFood = (ctx, { count }) => {
7272
for (let id = 0; id < count; id++) {
73-
ctx.db.circle.insert(newFood(id));
73+
ctx.db.food.insert(newFood(id));
7474
}
7575
console.info(`INSERT FOOD: ${count}`);
7676
};

0 commit comments

Comments
 (0)