chore: auto-commit (1 archivos)

- frontend/src/App.tsx

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-07 17:16:38 +02:00
parent 94223e68f7
commit c915e721af
+11 -13
View File
@@ -504,19 +504,6 @@ export function App() {
});
}, []);
if (!board) {
return (
<Group justify="center" p="xl">
<Loader />
</Group>
);
}
const dragOverlayCard = activeCard;
const dragOverlayColumn = activeColumnId ? findColumn(activeColumnId) : null;
// Memo configs — objetos inline causan re-emit del <style> inline de Mantine
// cada vez que `now` (tick 1s) o cualquier otro state actualice.
const headerConfig = useMemo(() => ({ height: 50 }), []);
const navbarConfig = useMemo(
() => ({
@@ -539,6 +526,17 @@ export function App() {
[]
);
if (!board) {
return (
<Group justify="center" p="xl">
<Loader />
</Group>
);
}
const dragOverlayCard = activeCard;
const dragOverlayColumn = activeColumnId ? findColumn(activeColumnId) : null;
return (
<DndContext
sensors={sensors}