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 01d20c8 commit 2792b4fCopy full SHA for 2792b4f
packages/app/src/app/pages/Sandbox/Editor/Workspace/index.tsx
@@ -50,10 +50,7 @@ const Workspace = () => {
50
currentSandbox: { owned },
51
},
52
isPatron,
53
- live: {
54
- isLive,
55
- roomInfo: { chatEnabled },
56
- },
+ live: { isLive, roomInfo },
57
preferences: {
58
settings: { zenMode },
59
@@ -74,7 +71,7 @@ const Workspace = () => {
74
71
<Component />
75
72
</div>
76
73
77
- {isLive && chatEnabled && (
+ {isLive && roomInfo.chatEnabled && (
78
<WorkspaceItem defaultOpen title="Chat">
79
<Chat />
80
</WorkspaceItem>
0 commit comments