diff --git a/projects/common/element-component.directive.ts b/projects/common/element-component.directive.ts
index a753ecf385947d8f9baf37f2aee8b2d1a1c6290f..192a635d0dc75111b2e8989cb44403125de56318 100644
--- a/projects/common/element-component.directive.ts
+++ b/projects/common/element-component.directive.ts
@@ -7,7 +7,7 @@ import { UIElement } from './models/uI-element';
 @Directive()
 export abstract class ElementComponent implements AfterContentChecked {
   abstract elementModel: UIElement;
-  project!: 'player' | 'editor'; // TODO x2
+  project!: 'player' | 'editor';
 
   constructor(private elementRef: ElementRef) {}
 
diff --git a/projects/common/element-components/compound-elements/compound-element.directive.ts b/projects/common/element-components/compound-elements/compound-element.directive.ts
index 1a57caf908199bfb31043b6590d4b29d70bd8a36..b6dbba98c228faed6170ffc949ccc17b42835c9b 100644
--- a/projects/common/element-components/compound-elements/compound-element.directive.ts
+++ b/projects/common/element-components/compound-elements/compound-element.directive.ts
@@ -4,7 +4,7 @@ import {
 } from '@angular/core';
 import { FormGroup } from '@angular/forms';
 import { ElementComponent } from '../../element-component.directive';
-import { InputElement, UIElement } from '../../models/uI-element';
+import { InputElement } from '../../models/uI-element';
 
 @Directive({ selector: 'app-compound-element' })