From 708efba0919f76b22be81996dbbe66300a136058 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 6 Jun 2017 22:42:01 -0700 Subject: [PATCH] fix prop name --- ui/js/component/video/internal/loading-screen.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/js/component/video/internal/loading-screen.jsx b/ui/js/component/video/internal/loading-screen.jsx index 06dd7ff6b..a8dfacc37 100644 --- a/ui/js/component/video/internal/loading-screen.jsx +++ b/ui/js/component/video/internal/loading-screen.jsx @@ -1,11 +1,11 @@ import React from "react"; -const LoadingScreen = ({ statusMessage }) => +const LoadingScreen = ({ status }) =>
- {statusMessage} + {status}
;