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 b1b8d95 commit 499599eCopy full SHA for 499599e
packages/app/src/app/pages/Sandbox/Editor/Workspace/items/Live/index.tsx
@@ -47,8 +47,9 @@ export const Live: FunctionComponent = () => {
47
isLoggedIn,
48
},
49
} = useOvermind();
50
+ const showPlaceHolder = (!isLive && !owned) || !isLoggedIn;
51
- if ((!isLive && !owned) || !isLoggedIn) {
52
+ if (showPlaceHolder) {
53
const message = isLoggedIn ? (
54
<>
55
You need to own this sandbox to open a live session to collaborate with
0 commit comments