Skip to content

Commit 2cd2a31

Browse files
committed
::migrate:: Fix
1 parent 126c0ba commit 2cd2a31

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

apps/builder/app/shared/share-project/share-project.stories.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,23 @@ const initialLinks: Array<LinkOptions> = [
1919
relation: "viewers",
2020
canClone: false,
2121
canCopy: false,
22+
canPublish: false,
2223
},
2324
{
2425
token: crypto.randomUUID(),
2526
name: "View and Edit",
2627
relation: "editors",
2728
canClone: false,
2829
canCopy: false,
30+
canPublish: false,
2931
},
3032
{
3133
token: crypto.randomUUID(),
3234
name: "Build",
3335
relation: "builders",
3436
canClone: false,
3537
canCopy: false,
38+
canPublish: false,
3639
},
3740
];
3841

@@ -63,6 +66,7 @@ const useShareProject = (
6366
relation: "viewers",
6467
canClone: false,
6568
canCopy: false,
69+
canPublish: false,
6670
},
6771
]);
6872
};

0 commit comments

Comments
 (0)