Commit 13a8f0c 1 parent a233ffc commit 13a8f0c Copy full SHA for 13a8f0c
File tree 2 files changed +17
-13
lines changed
src/app/(app)/session/[workshopId]/_components
2 files changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ The architecture of this project revolves around a streamlined development and d
36
36
- [x] Participant registration
37
37
- [x] Join workshops with workshop code
38
38
- [x] Complete workshop & dashboard page
39
+ - [x] Interactive workshop session
39
40
- [ ] Improve workshop notification with cron jobs
40
- - [ ] Interactive workshop session
41
41
42
42
## Running locally
43
43
Original file line number Diff line number Diff line change @@ -80,19 +80,23 @@ export function SessionCall({
80
80
< StreamVideo client = { videoClient } >
81
81
< StreamTheme >
82
82
< StreamCall call = { call } >
83
- < SpeakerLayout />
84
- < CallControls
85
- onLeave = { ( ) => {
86
- if ( isOrganizer ) {
87
- void MarkWorkshopHasCompleted ( workshopId ) . then ( ( ) =>
88
- call . endCall ( )
89
- )
90
- }
83
+ < section className = "container mt-8 overflow-hidden" >
84
+ < SpeakerLayout />
85
+ < CallControls
86
+ onLeave = { ( ) => {
87
+ if ( isOrganizer ) {
88
+ void MarkWorkshopHasCompleted ( workshopId ) . then ( ( ) =>
89
+ call . endCall ( )
90
+ )
91
+ }
91
92
92
- router . push ( "/dashboard" )
93
- } }
94
- />
95
- < CallParticipantsList onClose = { ( ) => undefined } />
93
+ router . push ( "/dashboard" )
94
+ } }
95
+ />
96
+ < div className = "mx-auto max-w-3xl" >
97
+ < CallParticipantsList onClose = { ( ) => undefined } />
98
+ </ div >
99
+ </ section >
96
100
</ StreamCall >
97
101
</ StreamTheme >
98
102
</ StreamVideo >
You can’t perform that action at this time.
0 commit comments