You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct PivotData memoization to detect data changes
**Root Cause Identified:**
- pivotDataKey only checked dataLength, not actual data changes
- Same length data (1000 records) resulted in no PivotData recreation
- Old data accumulated without cleanup for 800+ refreshes
**Fix:**
- Include actual data reference in pivotDataKey computation
- Now detects when new data array is generated (same length, different content)
- Forces PivotData recreation and cleanup on each refresh
**Expected Result:**
Memory should reset to baseline (~43MB) on each refresh instead of accumulating
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments