diff --git a/client/src/boot/BootRoutes.js b/client/src/boot/BootRoutes.js
index 36b677a57..ed55a90f4 100644
--- a/client/src/boot/BootRoutes.js
+++ b/client/src/boot/BootRoutes.js
@@ -193,6 +193,7 @@ class BootRoutes {
// events that should be caught by react component event handlers.
// Note that this empty link is rendered into an element that doesn't exist in the DOM.
const root = createRoot(document.createElement('div'));
+ // eslint-disable-next-line jsx-a11y/anchor-has-content, jsx-a11y/anchor-is-valid
root.render( {}} />);
// Start the page router
diff --git a/client/src/components/IframeDialog/IframeDialog.js b/client/src/components/IframeDialog/IframeDialog.js
index 873a28ba9..d2e3f2e4c 100644
--- a/client/src/components/IframeDialog/IframeDialog.js
+++ b/client/src/components/IframeDialog/IframeDialog.js
@@ -1,3 +1,4 @@
+/* eslint-disable jsx-a11y/iframe-has-title */
import React, { Component } from 'react';
import { Modal, ModalHeader, ModalBody } from 'reactstrap';
import classnames from 'classnames';
diff --git a/client/src/components/ListGroup/ListGroupItem.js b/client/src/components/ListGroup/ListGroupItem.js
index 43314f1cd..870026cd7 100644
--- a/client/src/components/ListGroup/ListGroupItem.js
+++ b/client/src/components/ListGroup/ListGroupItem.js
@@ -16,6 +16,7 @@ class ListGroupItem extends Component {
render() {
const className = `list-group-item ${this.props.className}`;
return (
+ // eslint-disable-next-line jsx-a11y/anchor-is-valid
{this.props.children}
diff --git a/client/src/components/Preview/Preview.js b/client/src/components/Preview/Preview.js
index f05cde369..ec35ac100 100644
--- a/client/src/components/Preview/Preview.js
+++ b/client/src/components/Preview/Preview.js
@@ -123,12 +123,15 @@ class Preview extends Component {
}
// Show iframe preview
- return ();
+ return (
+ // eslint-disable-next-line jsx-a11y/iframe-has-title
+
+ );
}
render() {