fix(data-aggregator): remove extra closing brace causing syntax error

- Fixed loadDimensionData function that had duplicate closing brace
- This was preventing review session dimension data from being parsed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-12-05 16:59:45 +08:00
parent 296761a34e
commit e2c5a514cb

View File

@@ -301,7 +301,6 @@ async function loadDimensionData(reviewDir) {
// Skip invalid dimension files
}
}
}
return dimensions;
}