diff --git a/demo-shell/src/app/components/report-issue/report-issue.component.scss b/demo-shell/src/app/components/report-issue/report-issue.component.scss
deleted file mode 100644
index 226b086281..0000000000
--- a/demo-shell/src/app/components/report-issue/report-issue.component.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-.app-report-issue {
- margin: 50px 0;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-
- &-form {
-
- width: 50%;
- min-width: 250px;
- margin-bottom: 50px;
-
- & mat-form-field {
- width: 100%;
- }
-
- &-textarea {
- background-color: white;
- width: 100%;
- height: 250px;
- }
- }
-}
diff --git a/demo-shell/src/app/components/report-issue/report-issue.component.ts b/demo-shell/src/app/components/report-issue/report-issue.component.ts
deleted file mode 100644
index e61e5d185b..0000000000
--- a/demo-shell/src/app/components/report-issue/report-issue.component.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/*!
- * @license
- * Copyright 2019 Alfresco Software, Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import { Component } from '@angular/core';
-
-@Component({
- templateUrl: './report-issue.component.html',
- styleUrls: [`./report-issue.component.scss`]
-})
-export class ReportIssueComponent {
-
-}