Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergonz committed Jul 10, 2024
1 parent 6631647 commit ed4f295
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/benchmark/src/models/mst.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ export const mstSmallModel = types

export const mstBigModel = types
.model("BigModel", {
aa: types.optional(mstSmallModel, () => {}),
bb: types.optional(mstSmallModel, () => {}),
cc: types.optional(mstSmallModel, () => {}),
dd: types.optional(mstSmallModel, () => {}),
aa: types.optional(mstSmallModel, () => ({})),
bb: types.optional(mstSmallModel, () => ({})),
cc: types.optional(mstSmallModel, () => ({})),
dd: types.optional(mstSmallModel, () => ({})),
a: "a",
b: "b",
c: "c",
Expand Down

0 comments on commit ed4f295

Please sign in to comment.