Skip to content

Commit

Permalink
[Canvas] Fixes embed flyout (#64468)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqliu1 authored Apr 27, 2020
1 parent 9bfdebd commit 4e714c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 4e714c2

Please sign in to comment.