From 22c2f79820b6e2dfa8b0db74f5f2fe976d088eb6 Mon Sep 17 00:00:00 2001
From: luccast <2213102+luccast@users.noreply.github.com>
Date: Wed, 4 Feb 2026 15:04:21 -0500
Subject: [PATCH] refactor(workspace): remove redundant editing indicator from
FileEditor
- Eliminated the "Editing" mode indicator from the FileEditor component to streamline the UI. This change enhances clarity by focusing on the unsaved changes indicator, improving the overall user experience.
---
src/components/workspace/FileEditor.tsx | 7 -------
1 file changed, 7 deletions(-)
diff --git a/src/components/workspace/FileEditor.tsx b/src/components/workspace/FileEditor.tsx
index c780c89..79edeef 100644
--- a/src/components/workspace/FileEditor.tsx
+++ b/src/components/workspace/FileEditor.tsx
@@ -228,13 +228,6 @@ export function FileEditor({
)}
- {/* Edit mode indicator */}
- {isEditing && (
-
- Editing
-
- )}
-
{/* Unsaved changes indicator */}
{isEditing && hasUnsavedChanges && (