diff --git a/src/components/TestingPanel.tsx b/src/components/TestingPanel.tsx index 9f4bcd4..ddea157 100644 --- a/src/components/TestingPanel.tsx +++ b/src/components/TestingPanel.tsx @@ -1,6 +1,7 @@ import React, { useState } from "react"; import { useWorkflowStore } from "../store/workflowStore"; import { Play, FileText, Download, RotateCcw } from "lucide-react"; +import { Button } from "./ui/button"; export const TestingPanel: React.FC = () => { const { currentWorkflow, executeWorkflow, isExecuting, executionResults } = @@ -104,34 +105,35 @@ export const TestingPanel: React.FC = () => {
{sampleInputs.map((sample, index) => ( - + ))}
- + + Run Test + - +
@@ -143,13 +145,15 @@ export const TestingPanel: React.FC = () => {

Test Results

- + + Export +
diff --git a/src/components/WorkflowToolbar.tsx b/src/components/WorkflowToolbar.tsx index b90035c..d113b2e 100644 --- a/src/components/WorkflowToolbar.tsx +++ b/src/components/WorkflowToolbar.tsx @@ -15,6 +15,7 @@ import { loadWorkflowFromFile, } from "../utils/workflowSerialization"; import { ApiKeysSettings } from "./ApiKeysSettings"; +import { Button } from "./ui/button"; export const WorkflowToolbar: React.FC = () => { const { @@ -88,79 +89,77 @@ export const WorkflowToolbar: React.FC = () => {
- + {showSaveSuccess ? "Saved!" : "Save"} + - + + Export + - + + Import + - + + API Keys +
- + - + + Reset +