We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1edafa7 commit 7c21acaCopy full SHA for 7c21aca
packages/app/src/app/store/modules/profile/model.js
@@ -49,7 +49,14 @@ export default {
49
isLoadingProfile: types.boolean,
50
sandboxes: types.map(types.map(types.array(Sandbox))),
51
likedSandboxes: types.map(types.map(types.array(Sandbox))),
52
- userSandboxes: types.array(Sandbox),
+ userSandboxes: types.array(
53
+ types.model({
54
+ id: types.string,
55
+ title: types.maybe(types.string),
56
+ insertedAt: types.string,
57
+ updatedAt: types.string,
58
+ })
59
+ ),
60
currentSandboxesPage: types.number,
61
currentLikedSandboxesPage: types.number,
62
isLoadingSandboxes: types.boolean,
0 commit comments