From 5891d40271aec7e85e93d116118db5fe6840f1cd Mon Sep 17 00:00:00 2001 From: akash-codemonk <67054171+akash-codemonk@users.noreply.github.com> Date: Wed, 16 Sep 2020 15:14:07 +0530 Subject: [PATCH] Fix ConfirmRunModal not showing up in view mode (#551) --- app/client/src/pages/AppViewer/AppViewerPageContainer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/client/src/pages/AppViewer/AppViewerPageContainer.tsx b/app/client/src/pages/AppViewer/AppViewerPageContainer.tsx index 2ebd7c5c1d..10c38b1f4d 100644 --- a/app/client/src/pages/AppViewer/AppViewerPageContainer.tsx +++ b/app/client/src/pages/AppViewer/AppViewerPageContainer.tsx @@ -16,6 +16,7 @@ import { getCanvasWidgetDsl, getCurrentPageName, } from "selectors/editorSelectors"; +import ConfirmRunModal from "pages/Editor/ConfirmRunModal"; const Section = styled.section` background: ${props => props.theme.colors.bodyBG}; @@ -100,6 +101,7 @@ class AppViewerPageContainer extends Component { pageId={this.props.match.params.pageId} pageName={this.props.currentPageName} /> + ); }