From 8b0c8d7b3a7cbee28836d9b04c13e104cd000cb5 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Mon, 25 Nov 2024 21:08:59 -0300 Subject: [PATCH] fix: correct PlaygroundButton import path in flowToolbarComponent (#4841) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✨ (playground-button.tsx): add new PlaygroundButton component to flowToolbarComponent for interactive playground feature in the application ♻️ (index.tsx): refactor import path for PlaygroundButton component to correct directory structure in flowToolbarComponent --- .../flowToolbarComponent/components/playground-button.tsx | 0 src/frontend/src/components/core/flowToolbarComponent/index.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/frontend/src/components/{ => core}/flowToolbarComponent/components/playground-button.tsx (100%) diff --git a/src/frontend/src/components/flowToolbarComponent/components/playground-button.tsx b/src/frontend/src/components/core/flowToolbarComponent/components/playground-button.tsx similarity index 100% rename from src/frontend/src/components/flowToolbarComponent/components/playground-button.tsx rename to src/frontend/src/components/core/flowToolbarComponent/components/playground-button.tsx diff --git a/src/frontend/src/components/core/flowToolbarComponent/index.tsx b/src/frontend/src/components/core/flowToolbarComponent/index.tsx index fbed6d4b9..e15cc8539 100644 --- a/src/frontend/src/components/core/flowToolbarComponent/index.tsx +++ b/src/frontend/src/components/core/flowToolbarComponent/index.tsx @@ -1,5 +1,5 @@ import ShadTooltip from "@/components/common/shadTooltipComponent"; -import PlaygroundButton from "@/components/flowToolbarComponent/components/playground-button"; +import PlaygroundButton from "@/components/core/flowToolbarComponent/components/playground-button"; import { ENABLE_API, ENABLE_LANGFLOW_STORE,