@@ -17,7 +17,6 @@ import {classMap} from 'lit/directives/class-map.js';
1717
1818import { core } from '../../core/core' ;
1919import { AnalyticsService , ButtonClick } from '../../services/analytics.service' ;
20- import { AuthService } from '../../services/auth.service' ;
2120import { ExperimentEditor } from '../../services/experiment.editor' ;
2221import { ExperimentManager } from '../../services/experiment.manager' ;
2322import { ExperimentService } from '../../services/experiment.service' ;
@@ -42,7 +41,6 @@ export class Component extends MobxLitElement {
4241 static override styles : CSSResultGroup = [ styles ] ;
4342
4443 private readonly analyticsService = core . getService ( AnalyticsService ) ;
45- private readonly authService = core . getService ( AuthService ) ;
4644 private readonly experimentEditor = core . getService ( ExperimentEditor ) ;
4745 private readonly experimentManager = core . getService ( ExperimentManager ) ;
4846 private readonly experimentService = core . getService ( ExperimentService ) ;
@@ -182,13 +180,11 @@ export class Component extends MobxLitElement {
182180 this . experimentManager . getCohortHumanParticipants ( this . cohort . id ) ,
183181 html `${ this . renderAddHumanParticipant ( ) } ` ,
184182 ) }
185- ${ this . authService . showAlphaFeatures
186- ? this . renderParticipantTable (
187- 'Agent participants' ,
188- this . experimentManager . getCohortAgentParticipants ( this . cohort . id ) ,
189- html `${ this . renderAddAgentParticipant ( ) } ` ,
190- )
191- : nothing }
183+ ${ this . renderParticipantTable (
184+ 'Agent participants' ,
185+ this . experimentManager . getCohortAgentParticipants ( this . cohort . id ) ,
186+ html `${ this . renderAddAgentParticipant ( ) } ` ,
187+ ) }
192188 ${ this . renderMediatorTable (
193189 'Agent mediators' ,
194190 this . experimentManager . getCohortAgentMediators ( this . cohort . id ) ,
0 commit comments