Commented out state logger

This commit is contained in:
Emir Karabeg
2025-01-20 19:54:17 -08:00
parent f4507bf816
commit 203333ae0b
2 changed files with 3 additions and 11 deletions

View File

@@ -217,9 +217,9 @@ function WorkflowCanvas() {
setSelectedBlockId(null)
}, [])
useEffect(() => {
initializeStateLogger()
}, [])
// useEffect(() => {
// initializeStateLogger()
// }, [])
/**
* CSS keyframe animation for the dashed line effect

View File

@@ -22,13 +22,6 @@ export function Table({ columns, blockId, subBlockId }: TableProps) {
null
)
// Log component renders
console.log('Table component rendering', {
blockId,
subBlockId,
value,
})
useEffect(() => {
if (activePositionRef.current && document.activeElement === document.body) {
const { rowIndex, column } = activePositionRef.current
@@ -54,7 +47,6 @@ export function Table({ columns, blockId, subBlockId }: TableProps) {
column: string,
value: string
) => {
console.log('Cell change', { rowIndex, column, value })
const updatedRows = rows.map((row, idx) =>
idx === rowIndex
? {