From bfb4de6b1aa1f72b64d9485416e9c31474119063 Mon Sep 17 00:00:00 2001 From: connorhaugh <49422820+connorhaugh@users.noreply.github.com> Date: Tue, 25 Oct 2022 11:44:39 -0400 Subject: [PATCH] Fix: temp remove video preview text from settings editor (#134) * fix: remove preview * fix: unrelated remove removed fetchImages --- .../VideoEditor/components/VideoSettingsModal/index.jsx | 6 +----- src/editors/data/redux/thunkActions/app.js | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx b/src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx index df0b09cab..3b1a0b196 100644 --- a/src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx +++ b/src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx @@ -12,11 +12,7 @@ import './index.scss'; export const VideoSettingsModal = () => (
-
- Video Preview goes here - {/* */} -
-
+

Settings

diff --git a/src/editors/data/redux/thunkActions/app.js b/src/editors/data/redux/thunkActions/app.js index 443a32adc..4ffdd7410 100644 --- a/src/editors/data/redux/thunkActions/app.js +++ b/src/editors/data/redux/thunkActions/app.js @@ -65,7 +65,7 @@ export const uploadImage = ({ file, setSelection }) => (dispatch) => { }; export const fetchVideos = ({ onSuccess }) => (dispatch) => { - dispatch(requests.fetchImages({ onSuccess })); + dispatch(requests.fetchAssets({ onSuccess })); // onSuccess(mockData.mockVideoData); };