small fix

This commit is contained in:
hzrd149
2023-09-29 23:03:57 -05:00
parent 19dc44c968
commit d10cb2b34a

View File

@@ -26,14 +26,15 @@ const defaultLayout: MosaicNode<string> = {
first: { first: {
direction: "column", direction: "column",
first: "video", first: "video",
second: { second: "users",
direction: "row", splitPercentage: 40,
first: "users",
second: "zaps",
},
}, },
second: "chat", second: {
splitPercentage: 60, direction: "row",
first: "zaps",
second: "chat",
},
splitPercentage: 33,
}; };
function StreamModerationDashboard({ stream }: { stream: ParsedStream }) { function StreamModerationDashboard({ stream }: { stream: ParsedStream }) {