@jordon Run the participant count next the the sessionInfo and make sure to return the value to front
const sessionInfo = classesOnly . find ( book => book . bookedEntity . singleSession . sessionId == sessionId );
const participantCount = classesOnly . filter ( book => book . bookedEntity . singleSession . sessionId == sessionId ). length ;
return {
“className” : sessionInfo . bookedEntity . title ,
“startTime” : sessionInfo . bookedEntity . singleSession . start . toDateString (),
“sessionId” : sessionId ,
“participantCount” : participantCount
}