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 μ ν ν κ³³μμ μ²λ¦¬. */}