[Canvas] Fixes embed flyout (#64468)

This commit is contained in:
Catherine Liu 2020-04-27 14:15:58 -07:00 committed by GitHub
parent 9bfdebd0f1
commit 4e714c2523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,8 +93,8 @@ export const ElementMenu: FunctionComponent<Props> = ({
const hideAssetModal = () => setAssetModalVisible(false);
const showAssetModal = () => setAssetModalVisible(true);
const showEmbedPanel = () => setEmbedPanelVisible(false);
const hideEmbedPanel = () => setEmbedPanelVisible(false);
const showEmbedPanel = () => setEmbedPanelVisible(true);
const hideSavedElementsModal = () => setSavedElementsModalVisible(false);
const showSavedElementsModal = () => setSavedElementsModalVisible(true);