fix: endpoint build_public_tmp now supports event delivery type direct (#7526)
* fix the issue where `build_public_tmp` does not support `EVENT_DELIVERY=direct` * fix: modify `build_public_tmp` to conform to the latest design * [autofix.ci] apply automated fixes * fix: Delete debugging logs * fix: Delete debugging logs * fix: Delete debugging logs --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
This commit is contained in:
parent
67009190cd
commit
cf165953f1
2 changed files with 12 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
|||
import { useGetConfig } from "@/controllers/API/queries/config/use-get-config";
|
||||
import { useGetFlow } from "@/controllers/API/queries/flows/use-get-flow";
|
||||
import { useCustomNavigate } from "@/customization/hooks/use-custom-navigate";
|
||||
import { track } from "@/customization/utils/analytics";
|
||||
|
|
@ -11,6 +12,8 @@ import { v4 as uuid } from "uuid";
|
|||
import useFlowsManagerStore from "../../stores/flowsManagerStore";
|
||||
import { getInputsAndOutputs } from "../../utils/storeUtils";
|
||||
export default function PlaygroundPage() {
|
||||
|
||||
useGetConfig();
|
||||
const setCurrentFlow = useFlowsManagerStore((state) => state.setCurrentFlow);
|
||||
const currentSavedFlow = useFlowsManagerStore((state) => state.currentFlow);
|
||||
const setClientId = useUtilityStore((state) => state.setClientId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue