diff --git a/bigbluebutton-html5/imports/ui/components/presentation/slide/component.jsx b/bigbluebutton-html5/imports/ui/components/presentation/slide/component.jsx
index d892c12e52acf4cae4a8fcb3da7b4ac9fd1f54e0..5fe3d1ef16f830d2feaf6284a1b6eb099d0955ee 100644
--- a/bigbluebutton-html5/imports/ui/components/presentation/slide/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/presentation/slide/component.jsx
@@ -1,9 +1,7 @@
 import React from 'react';
 import PropTypes from 'prop-types';
 
-const Slide = ({
-  imageUri, svgWidth, svgHeight, onLoad,
-}) => (
+const Slide = ({ imageUri, svgWidth, svgHeight }) => (
   <g>
     {imageUri ?
       // some pdfs lose a white background color during the conversion to svg
@@ -24,7 +22,6 @@ const Slide = ({
           height={svgHeight}
           xlinkHref={imageUri}
           strokeWidth="0.8"
-          onLoad={onLoad}
           style={{ WebkitTapHighlightColor: 'transparent' }}
         />
       </g>