diff --git a/assets/src/blocks/rt-player/save.js b/assets/src/blocks/rt-player/save.js
index fd5989f..2413734 100644
--- a/assets/src/blocks/rt-player/save.js
+++ b/assets/src/blocks/rt-player/save.js
@@ -22,7 +22,7 @@ import { useBlockProps } from '@wordpress/block-editor';
* @return {HTMLElement} Element to render.
*/
export default function save( { attributes } ) {
- const { videoUrl, videoAlt, videoSize, videoPosterUrl, useCustomSize } = attributes;
+ const { videoUrl, videoAlt, videoSize, videoType, videoPosterUrl, useCustomSize } = attributes;
const videoSetupOptions = {
controls: true,
@@ -44,7 +44,7 @@ export default function save( { attributes } ) {
width={ useCustomSize ? videoSize.width : '100%' }
height={ useCustomSize ? videoSize.height : 'auto' }
>
-
+
) }