Skip to content

Commit

Permalink
Fixed add from visualize library menu option
Browse files Browse the repository at this point in the history
  • Loading branch information
cqliu1 committed Apr 27, 2020
1 parent a32d7b1 commit e403173
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 e403173

Please sign in to comment.