Merge branch 'fix/hide-stream'

This commit is contained in:
thepaperpilot 2023-02-28 19:55:03 -06:00
commit a9d5b4c56b

View file

@ -1313,7 +1313,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
<div style="flex-grow: 1" /> <div style="flex-grow: 1" />
{findingMatch.value ? ( {findingMatch.value ? (
<div class="waiting">Finding opposing team...</div> <div class="waiting">Finding opposing team...</div>
) : ( ) : team.value.some(m => m != null) ? (
<img <img
class="startStream" class="startStream"
draggable="false" draggable="false"
@ -1323,7 +1323,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
}} }}
src={startStream} src={startStream}
/> />
)} ) : null}
</Row> </Row>
<div style="flex-grow: 1" /> <div style="flex-grow: 1" />
<Row style="margin-top: 10vh"> <Row style="margin-top: 10vh">