We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d668afb commit b2e519cCopy full SHA for b2e519c
1 file changed
Website/components/insightsview/solutions/InsightsSolutionView.tsx
@@ -601,7 +601,7 @@ const InsightsSolutionView = ({ }: InsightsSolutionViewProps) => {
601
const i = solutionMatrix.solutionNames.indexOf(solution1);
602
const j = solutionMatrix.solutionNames.indexOf(solution2);
603
604
- let typeBreakdown: Record<string, number> = {};
+ const typeBreakdown: Record<string, number> = {};
605
if (solution1 !== solution2 && i !== -1 && j !== -1) {
606
const matrixIndex = i * solutionMatrix.solutionNames.length + j;
607
const sharedComponents = solutionMatrix.matrix[matrixIndex].sharedComponents;
0 commit comments