@@ -268,12 +268,12 @@ const resolveDockerIdentityClaims = (
268268) : ReadonlyArray < DockerIdentityClaim > => [
269269 { namespace : "container" , kind : "containerName" , name : config . containerName } ,
270270 ...( config . enableMcpPlaywright
271- ? [ { namespace : "container" , kind : "browserContainerName" , name : `${ config . containerName } -browser` } satisfies DockerIdentityClaim ]
271+ ? [ { namespace : "container" as const , kind : "browserContainerName" as const , name : `${ config . containerName } -browser` } ]
272272 : [ ] ) ,
273273 { namespace : "composeProject" , kind : "serviceName" , name : resolveComposeProjectName ( config ) } ,
274274 { namespace : "volume" , kind : "volumeName" , name : config . volumeName } ,
275275 ...( config . enableMcpPlaywright
276- ? [ { namespace : "volume" , kind : "browserVolumeName" , name : `${ config . volumeName } -browser` } satisfies DockerIdentityClaim ]
276+ ? [ { namespace : "volume" as const , kind : "browserVolumeName" as const , name : `${ config . volumeName } -browser` } ]
277277 : [ ] ) ,
278278 { namespace : "volume" , kind : "bootstrapVolumeName" , name : resolveProjectBootstrapVolumeName ( config ) }
279279]
@@ -319,7 +319,7 @@ const deleteConflictingProjectsIfNeeded = (
319319 continue
320320 }
321321
322- for ( const claim of sharedClaims ) { conflicts . push ( claim ) }
322+ conflicts . push ( ... sharedClaims )
323323 conflictingProjects . set ( status . projectDir , {
324324 projectDir : status . projectDir ,
325325 repoUrl : status . config . template . repoUrl ,
0 commit comments