diff --git a/src/renderer/inbox/components/NoteCard.tsx b/src/renderer/inbox/components/NoteCard.tsx index c89c842..2b9bf96 100644 --- a/src/renderer/inbox/components/NoteCard.tsx +++ b/src/renderer/inbox/components/NoteCard.tsx @@ -137,10 +137,10 @@ function NotebookChip({ current, notebooks, onMove }: { {open && hasOthers && (
@@ -455,18 +455,6 @@ export function NoteCard({ note, onDeleted, onUpdated, mode = 'inbox', onRestore ))}
)} - {currentNb && ( -
- { - await moveNoteToNotebook(local.id, newId); - setLocal({ ...local, notebookId: newId }); - }} - /> -
- )} {local.userIntent !== null && (
πŸ’‘ @@ -549,6 +537,17 @@ export function NoteCard({ note, onDeleted, onUpdated, mode = 'inbox', onRestore alignItems: 'center' }} > + {/* notebook chip β€” tag(ν‚€μ›Œλ“œ)와 notebook(μ»¨ν…μŠ€νŠΈ) 의미 뢄리. done + inbox μ—μ„œλ§Œ ν‘œμ‹œ. */} + {!isTrash && local.aiStatus === 'done' && currentNb && ( + { + await moveNoteToNotebook(local.id, newId); + setLocal({ ...local, notebookId: newId }); + }} + /> + )} {/* 이동 λ²„νŠΌ β€” 클릭 μ‹œ MoveStatusModal μ§„μž…. μ‚¬μœ  μž…λ ₯ + AI μžλ™ λΆ„λ₯˜ + μˆ˜λ™ status 선택 ν•œ κ³³μ—μ„œ 처리. */}