chore(react/collections/table): not loading config correctly

This commit is contained in:
Elian Doran 2025-09-11 20:37:09 +03:00
parent fee822c689
commit d52cf455a9
No known key found for this signature in database

View File

@ -62,7 +62,7 @@ export default function BoardView({ note: parentNote, noteIds, viewConfig, saveC
});
}
useEffect(refresh, [ parentNote, noteIds ]);
useEffect(refresh, [ parentNote, noteIds, viewConfig ]);
const handleColumnDrop = useCallback((fromIndex: number, toIndex: number) => {
if (!columns || fromIndex === toIndex) return;