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 cd9c02f commit 8924d7fCopy full SHA for 8924d7f
packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Project.tsx
@@ -54,6 +54,7 @@ export const Project: React.FunctionComponent<IProjectProps> = ({
54
} = useOvermind();
55
56
const template = getTemplateDefinition(sandbox.template);
57
+ const { isServer } = template;
58
59
return (
60
<Container>
@@ -115,7 +116,9 @@ export const Project: React.FunctionComponent<IProjectProps> = ({
115
116
Unlisted (only available by url)
117
</option>
118
)}
- {isPatron && <option value={2}>Private</option>}
119
+ {isPatron && !isServer && (
120
+ <option value={2}>Private</option>
121
+ )}
122
</PrivacySelect>
123
</>
124
) : (
0 commit comments