diff --git a/src/app/components/participant/comment-create-page/comment-create-page.component.ts b/src/app/components/participant/comment-create-page/comment-create-page.component.ts
index 4961d6c1505848d427cb2d4b32cdf1a7d87bf060..9de4cb5ffa66b4e9691f68d6f2f29ae281115e5d 100644
--- a/src/app/components/participant/comment-create-page/comment-create-page.component.ts
+++ b/src/app/components/participant/comment-create-page/comment-create-page.component.ts
@@ -1,7 +1,6 @@
 import { Component, OnInit, Input, ViewChild } from '@angular/core';
 import { ActivatedRoute } from '@angular/router';
 import { Location } from '@angular/common';
-import { Room } from '../../../models/room';
 import { Comment } from '../../../models/comment';
 import { RoomService } from '../../../services/http/room.service';
 import { CommentService } from '../../../services/http/comment.service';
diff --git a/src/app/components/participant/content-text-participant/content-text-participant.component.ts b/src/app/components/participant/content-text-participant/content-text-participant.component.ts
index a81d230fa36c7c1f471bb050f1b0d9a32ffcf1e6..234978ba7523e98b04acb4320b54186334ed5a83 100644
--- a/src/app/components/participant/content-text-participant/content-text-participant.component.ts
+++ b/src/app/components/participant/content-text-participant/content-text-participant.component.ts
@@ -12,16 +12,6 @@ import { NotificationService } from '../../../services/util/notification.service
 export class ContentTextParticipantComponent implements OnInit {
   @Input() content: ContentText;
 
-  dummyContent: ContentText = new ContentText(
-    '1',
-    '1',
-    '1',
-    'Text Content 1',
-    'This is the body of Text Content 1',
-    1,
-    []
-  );
-
   textAnswer = '';
   isAnswerSent = false;