From 10fc9635b910e87cb7be4439c7fbb9c9bc7ae703 Mon Sep 17 00:00:00 2001 From: Johnson Cherian Date: Wed, 31 Jul 2024 12:35:49 +0530 Subject: [PATCH] fix: added missing import --- frontend/src/Editor/BoxUI.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/BoxUI.jsx b/frontend/src/Editor/BoxUI.jsx index 1272302ce5..06ec5f8582 100644 --- a/frontend/src/Editor/BoxUI.jsx +++ b/frontend/src/Editor/BoxUI.jsx @@ -6,7 +6,7 @@ import OverlayTrigger from 'react-bootstrap/OverlayTrigger'; import '@/_styles/custom.scss'; import { EditorContext } from './Context/EditorContextWrapper'; import { validateWidget } from '@/_helpers/utils'; -import { useCurrentState } from '@/_stores/currentStateStore'; +import { useCurrentState, useCurrentStateStore } from '@/_stores/currentStateStore'; import { useAppDataStore } from '@/_stores/appDataStore'; import _ from 'lodash';