Remove unnused imports

This commit is contained in:
igorrCarvalho 2024-05-22 21:21:10 -03:00
commit 18067e9076

View file

@ -21,14 +21,7 @@ const InputSearchComponent = ({
onKeyDown,
}: InputSearchComponentProps) => {
const pagePath = window.location.pathname;
const [inputValue, setInputValue] = useState("");
const allFlows = useFlowsManagerStore((state) => state.allFlows);
const setSearchFlowsComponents = useFlowsManagerStore(
(state) => state.setSearchFlowsComponents,
);
const searchFlowsComponents = useFlowsManagerStore(
(state) => state.searchFlowsComponents,
);