diff --git a/pages/_document.tsx b/pages/_document.tsx
index 8435db031..158b9399e 100644
--- a/pages/_document.tsx
+++ b/pages/_document.tsx
@@ -111,7 +111,6 @@ MyDocument.getInitialProps = async (ctx: DocumentContext) => {
));
diff --git a/src/common/util/errorUtils.ts b/src/common/util/errorUtils.ts
index dc9a25e51..b2fcff14d 100644
--- a/src/common/util/errorUtils.ts
+++ b/src/common/util/errorUtils.ts
@@ -103,7 +103,6 @@ export function maybeDebuggerBreak(): void {
const isBreakEnabled = process.env.NEXT_PUBLIC_DEBUG_BREAKS === 'true';
if (Release.IsNodeDevBuild && isBreakEnabled) {
- // eslint-disable-next-line no-debugger
debugger; // This line will be hit only if DevTools are open.
// Build tools often remove debugger statements in production.
}
diff --git a/src/modules/blocks/image/RenderImageURL.tsx b/src/modules/blocks/image/RenderImageURL.tsx
index 57c9d9169..b95f088e4 100644
--- a/src/modules/blocks/image/RenderImageURL.tsx
+++ b/src/modules/blocks/image/RenderImageURL.tsx
@@ -173,7 +173,6 @@ export const RenderImageURL = (props: {
{/* Image / Loading Indicator */}
{props.imageURL ? (
- {/* eslint-disable-next-line @next/next/no-img-element */}
) : (