File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,14 @@ export default function App() {
35
35
onChange = { ( e ) => setPeerId ( e . target . value ) }
36
36
/>
37
37
</ div >
38
- < button type = "submit" disabled = { ! peer . localStream || peer . loading } value = "Go Live" >
38
+ < button
39
+ type = "submit"
40
+ disabled = { ! peer . localStream || peer . loading }
41
+ value = "Go Live"
42
+ >
39
43
{ peer . loading
40
44
? < progress className = "circle small" > </ progress >
41
- : < span > Go Live</ span >
42
- }
43
-
45
+ : < span > Go Live</ span > }
44
46
</ button >
45
47
</ nav >
46
48
</ form >
@@ -65,8 +67,7 @@ export default function App() {
65
67
< button type = "submit" disabled = { peer . loading } >
66
68
{ peer . loading
67
69
? < progress className = "circle small" > </ progress >
68
- : < span > Connect</ span >
69
- }
70
+ : < span > Connect</ span > }
70
71
</ button >
71
72
< button className = "secondary" onClick = { ( ) => peer . stop ( ) } >
72
73
Stop
@@ -87,7 +88,7 @@ export default function App() {
87
88
< VideoContainer
88
89
key = { s . key }
89
90
className = "s12 m6 no-padding"
90
- title = { s . sess . otherPeerId }
91
+ title = { s . sess . other . peerId }
91
92
stream = { s . remoteStream }
92
93
loading = { s . loading }
93
94
/>
You can’t perform that action at this time.
0 commit comments