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 52a7192 commit eed2af1Copy full SHA for eed2af1
packages/app/src/app/pages/Sandbox/Editor/Header/ForkButton/ForkButton.tsx
@@ -178,7 +178,9 @@ export const ForkButton: React.FC<ForkButtonProps> = props => {
178
forkClicked={props.forkClicked}
179
item={currentSpace}
180
disabled={state.activeWorkspaceAuthorization === 'READ'}
181
- isPersonal={currentSpace.teamId === state.personalWorkspaceId}
+ isPersonal={
182
+ currentSpace && currentSpace.teamId === state.personalWorkspaceId
183
+ }
184
/>
185
<Menu.Divider />
186
{otherWorkspaces.map((space, i) => (
0 commit comments