WIP: Améliorations UX et corrections de bugs avant création des épiques

This commit is contained in:
2026-01-17 11:10:50 +01:00
parent 772dc77719
commit ef60dafd73
84 changed files with 11846 additions and 230 deletions

View File

@@ -59,11 +59,11 @@ export function NotebooksList() {
if (noteId) {
await moveNoteToNotebookOptimistic(noteId, notebookId)
router.refresh() // Refresh the page to show the moved note
// No need for router.refresh() - triggerRefresh() is already called in moveNoteToNotebookOptimistic
}
dragOver(null)
}, [moveNoteToNotebookOptimistic, dragOver, router])
}, [moveNoteToNotebookOptimistic, dragOver])
// Handle drag over a notebook
const handleDragOver = useCallback((e: React.DragEvent, notebookId: string | null) => {