diff --git a/src/app/comment/comment.component.html b/src/app/comment/comment.component.html
index 10008393cbbd2bff03c4c81f61e828af5b9ab103..8dda976855c08491ded3cf6e202b4eae3f2446ce 100644
--- a/src/app/comment/comment.component.html
+++ b/src/app/comment/comment.component.html
@@ -1,26 +1,22 @@
-<div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10">
-  <ol class ="ol">
-    <li *ngFor="let comment of comments">
-      <mat-card>
-        <mat-card-content>
-          <div class="comment-body">
-            <h3>{{comment.subject}}</h3><br>
+<div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10" *ngFor="let comment of comments">
+  <mat-card>
+    <mat-card-content>
+      <div class="comment-body">
+        <h3>{{comment.subject}}</h3><br>
 
-            {{comment.body}}
+        {{comment.body}}
 
-            <div class="trash-icon">
-              <i class="material-icons" (click)="delete(comment)">delete</i>
-            </div>
-          </div>
-        </mat-card-content>
-        <mat-card-footer>
-          <div class="date">
-           <i> Submitted on {{comment.creationTimestamp | date:'dd-MM-yyyy HH:mm:ss' : format}} </i>
-          </div>
-         </mat-card-footer>
-      </mat-card><br>
-    </li>
-  </ol>
+        <div class="trash-icon">
+          <i class="material-icons" (click)="delete(comment)">delete</i>
+        </div>
+      </div>
+    </mat-card-content>
+    <mat-card-footer>
+      <div class="date">
+        <i> Submitted on {{comment.creationTimestamp | date:'dd-MM-yyyy HH:mm:ss' : format}} </i>
+      </div>
+    </mat-card-footer>
+  </mat-card><br>
 </div>
 
 <button mat-raised-button color="primary" (click)="goBack()">Back</button>
diff --git a/src/app/comment/comment.component.scss b/src/app/comment/comment.component.scss
index f02c662dfdacc9fd2779410ef288341d02c07410..22a513126d8806e383c7f5dbae0c1c6f0d5d7b0c 100644
--- a/src/app/comment/comment.component.scss
+++ b/src/app/comment/comment.component.scss
@@ -9,7 +9,3 @@
   font-size: 80%;
   margin-right: 10px;
 }
-
-.ol {
-  list-style: none;
-}