+
Inkling
{(
diff --git a/src/renderer/inbox/components/NoteCard.tsx b/src/renderer/inbox/components/NoteCard.tsx
index 70ba98c..c89c842 100644
--- a/src/renderer/inbox/components/NoteCard.tsx
+++ b/src/renderer/inbox/components/NoteCard.tsx
@@ -115,29 +115,38 @@ function NotebookChip({ current, notebooks, onMove }: {
onMove: (id: string) => Promise;
}): React.ReactElement {
const [open, setOpen] = useState(false);
+ const others = notebooks.filter((nb) => nb.id !== current.id);
+ const hasOthers = others.length > 0;
return (
- {open && (
+ {open && hasOthers && (
- {notebooks.filter((nb) => nb.id !== current.id).map((nb) => (
+
+ 이동할 노트북
+
+ {others.map((nb) => (