Skip to content

Commit b2e519c

Browse files
Bircckclaude
andcommitted
fix(website): use const for non-reassigned variable
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d668afb commit b2e519c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Website/components/insightsview/solutions/InsightsSolutionView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ const InsightsSolutionView = ({ }: InsightsSolutionViewProps) => {
601601
const i = solutionMatrix.solutionNames.indexOf(solution1);
602602
const j = solutionMatrix.solutionNames.indexOf(solution2);
603603

604-
let typeBreakdown: Record<string, number> = {};
604+
const typeBreakdown: Record<string, number> = {};
605605
if (solution1 !== solution2 && i !== -1 && j !== -1) {
606606
const matrixIndex = i * solutionMatrix.solutionNames.length + j;
607607
const sharedComponents = solutionMatrix.matrix[matrixIndex].sharedComponents;

0 commit comments

Comments
 (0)