Remove category feature from UI

- Removed category input field from note editor
- Removed category display from notes list
- Removed category state management from NoteEditor component
- Category field now always saved as empty string
- Simplified UI to focus on core note-taking features
- Fixed favorite star icon dark mode styling
This commit is contained in:
drelich
2026-03-17 00:18:18 +01:00
parent 1c9efe6007
commit d09920850d
2 changed files with 4 additions and 24 deletions

View File

@@ -159,11 +159,6 @@ export function NotesList({
</div>
<div className="flex items-center text-xs text-gray-500 dark:text-gray-400 mb-2">
{note.category && (
<span className="bg-gray-200 dark:bg-gray-700 px-2 py-0.5 rounded-full mr-2 text-gray-700 dark:text-gray-300">
{note.category}
</span>
)}
<span>{formatDate(note.modified)}</span>
</div>