Fix: temp remove video preview text from settings editor (#134)

* fix: remove preview

* fix: unrelated remove removed fetchImages
This commit is contained in:
connorhaugh
2022-10-25 11:44:39 -04:00
committed by GitHub
parent ca5846f1f6
commit bfb4de6b1a
2 changed files with 2 additions and 6 deletions

View File

@@ -12,11 +12,7 @@ import './index.scss';
export const VideoSettingsModal = () => (
<div className="video-settings-modal row">
<div className="video-preview col col-4">
Video Preview goes here
{/* <VideoPreview /> */}
</div>
<div className="video-controls col col-8">
<div className="video-controls col mx-2">
<ErrorSummary />
<h3>Settings</h3>
<VideoSourceWidget />

View File

@@ -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);
};