mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-21 16:13:56 +00:00
Merge branch 'fix/hide-stream'
This commit is contained in:
commit
a9d5b4c56b
1 changed files with 2 additions and 2 deletions
|
@ -1313,7 +1313,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
<div style="flex-grow: 1" />
|
||||
{findingMatch.value ? (
|
||||
<div class="waiting">Finding opposing team...</div>
|
||||
) : (
|
||||
) : team.value.some(m => m != null) ? (
|
||||
<img
|
||||
class="startStream"
|
||||
draggable="false"
|
||||
|
@ -1323,7 +1323,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
}}
|
||||
src={startStream}
|
||||
/>
|
||||
)}
|
||||
) : null}
|
||||
</Row>
|
||||
<div style="flex-grow: 1" />
|
||||
<Row style="margin-top: 10vh">
|
||||
|
|
Loading…
Reference in a new issue