Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/NoteEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function NoteEditor({ note, onUpdate, onDelete }: NoteEditorProps) {
</div>

{/* Timestamp Display */}
<div className="flex items-center gap-4 text-sm text-muted-foreground">
<div className="flex items-center gap-4 text-sm text-muted-foreground my-3">
<div className="flex items-center gap-1.5">
<Calendar className="w-4 h-4" />
<span>Created: {formatTimestamp(note.createdAt)}</span>
Expand Down