We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 951682c commit 1f25046Copy full SHA for 1f25046
src/app/components/StateRoute/ComponentMap/ComponentMap.tsx
@@ -126,12 +126,6 @@ export default function ComponentMap({
126
overflowY: 'auto',
127
};
128
129
- const formatRenderTime: string = (time: number): string => {
130
- if (!time) return 'No time information';
131
- const renderTime = time.toFixed(3);
132
- return `${renderTime} ms `;
133
- };
134
-
135
const nodeList: [] = []; // create a nodeList array to store our nodes as a flat array
136
137
const collectNodes: void = (node) => {
@@ -450,7 +444,7 @@ export default function ComponentMap({
450
444
}
451
445
452
446
} else {
453
- aspect = Math.max(aspect, 1);
447
+ aspect = Math.max(aspect, 0.8);
454
448
455
449
456
// mousing controls & Tooltip display logic
0 commit comments