mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 15:38:00 -05:00
Commented out state logger
This commit is contained in:
@@ -217,9 +217,9 @@ function WorkflowCanvas() {
|
||||
setSelectedBlockId(null)
|
||||
}, [])
|
||||
|
||||
useEffect(() => {
|
||||
initializeStateLogger()
|
||||
}, [])
|
||||
// useEffect(() => {
|
||||
// initializeStateLogger()
|
||||
// }, [])
|
||||
|
||||
/**
|
||||
* CSS keyframe animation for the dashed line effect
|
||||
|
||||
@@ -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
|
||||
? {
|
||||
|
||||
Reference in New Issue
Block a user