-
-
-
-
- {this.state.isFetching ? (
-
-
-
- ) : (
-
- {this.state.filteredIssues.map(issue =>
-
- )}
-
-
- Don't see your issue here?
- Open new issue
-
-
-
- )}
-
- );
- }
-};
-
-export default IssueListComponent;
\ No newline at end of file
diff --git a/src/app/components/help/report-issue/issue.tsx b/src/app/components/help/report-issue/issue.tsx
deleted file mode 100644
index cc8e6dc7..00000000
--- a/src/app/components/help/report-issue/issue.tsx
+++ /dev/null
@@ -1,42 +0,0 @@
-import React, { Component } from "react";
-import Card from 'react-bootstrap/Card';
-
-const cardStyle = {
- width: '300px',
- margin: '20px'
-};
-
-const cardTitleStyle = {
- color: 'black'
-};
-
-const cardTextStyle = {
- color: 'black',
- overflow: 'auto',
- height: '100px'
-};
-
-class IssueComponent extends Component