From 9317d26a510cc97da8c852f5058cea6f4806d4b6 Mon Sep 17 00:00:00 2001 From: Arpit Date: Wed, 25 Oct 2023 14:51:25 +0530 Subject: [PATCH] fixes: query confirmations list on viewer (#8017) --- frontend/src/Editor/Viewer.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/Editor/Viewer.jsx b/frontend/src/Editor/Viewer.jsx index 25945c112c..680eda8856 100644 --- a/frontend/src/Editor/Viewer.jsx +++ b/frontend/src/Editor/Viewer.jsx @@ -669,6 +669,7 @@ const withStore = (Component) => (props) => { const { currentLayout, queryConfirmationList } = useEditorStore( (state) => ({ currentLayout: state?.currentLayout, + queryConfirmationList: state?.queryConfirmationList, }), shallow );