@@ -20,8 +20,7 @@ export default function SessionCheckInScanner({
20
20
} : SessionCheckInScannerProps ) {
21
21
const [ status , setStatus ] = useState ( {
22
22
participantsNumber : sinfoSession . participants ?. length || 0 ,
23
- unauthenticatedParticipantsNumber :
24
- sinfoSession . unauthenticatedParticipants || 0 ,
23
+ unregisteredParticipantsNumber : sinfoSession . unregisteredParticipants || 0 ,
25
24
} ) ;
26
25
const [ topCard , setTopCard ] = useState < ReactNode | undefined > ( ) ;
27
26
const [ bottomCard , setBottomCard ] = useState < ReactNode | undefined > ( ) ;
@@ -64,8 +63,8 @@ export default function SessionCheckInScanner({
64
63
< MessageCard type = "danger" content = "Invalid QR-Code" /> ,
65
64
) ;
66
65
setStatus ( {
67
- unauthenticatedParticipantsNumber :
68
- sessionStatus . unauthenticatedParticipantsNumber ,
66
+ unregisteredParticipantsNumber :
67
+ sessionStatus . unregisteredParticipantsNumber ,
69
68
participantsNumber : sessionStatus . participantsNumber ,
70
69
} ) ;
71
70
}
@@ -101,7 +100,7 @@ export default function SessionCheckInScanner({
101
100
< span > { status . participantsNumber } </ span >
102
101
/
103
102
< Ghost size = { 16 } />
104
- < span > { status . unauthenticatedParticipantsNumber } </ span >
103
+ < span > { status . unregisteredParticipantsNumber } </ span >
105
104
</ div >
106
105
< button className = "button button-primary flex-1" >
107
106
< UserPlus size = { 32 } strokeWidth = { 1 } />
0 commit comments