From 88ff76e38bfa0cb190621fd1aa74f3cbcd10d1bb Mon Sep 17 00:00:00 2001 From: Nikhil-Doye Date: Thu, 23 Oct 2025 14:48:28 -0400 Subject: [PATCH] Consolidate database operation labels into a single entry for improved clarity - Updated the ConfigurationWizard component to unify individual database operation labels (query, insert, update, delete) under a single "Database Operations" label. - This change enhances the clarity of the configuration interface and aligns with recent refactoring efforts to streamline database management. --- src/components/ConfigurationWizard.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/ConfigurationWizard.tsx b/src/components/ConfigurationWizard.tsx index 961dbe0..bd6f904 100644 --- a/src/components/ConfigurationWizard.tsx +++ b/src/components/ConfigurationWizard.tsx @@ -195,10 +195,7 @@ export const ConfigurationWizard: React.FC = ({ embeddingGenerator: "Embedding Generator", similaritySearch: "Similarity Search", structuredOutput: "Structured Output", - databaseQuery: "Database Query", - databaseInsert: "Database Insert", - databaseUpdate: "Database Update", - databaseDelete: "Database Delete", + database: "Database Operations", }; return labels[type] || "New Node"; };