Skip to content

Commit d3af0df

Browse files
committed
fix linting
1 parent e76f6c2 commit d3af0df

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • applications/sckanner/frontend/src/components/common

applications/sckanner/frontend/src/components/common/Heatmap.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ const HeatmapGrid: FC<HeatmapGridProps> = ({
322322

323323
if (!hasHierarchy || !heatmapContainerRef.current) {
324324
setHorizontalParents([]);
325-
325+
326326
// Clear any leftover data attributes from previous datasnapshot
327327
if (heatmapContainerRef.current) {
328328
const xLabelsContainer = heatmapContainerRef.current.querySelector(
@@ -332,7 +332,7 @@ const HeatmapGrid: FC<HeatmapGridProps> = ({
332332
const labelElements = Array.from(
333333
xLabelsContainer.querySelectorAll('& > div'),
334334
) as HTMLElement[];
335-
335+
336336
// Clear attributes from all X-axis labels
337337
labelElements.slice(1).forEach((element) => {
338338
element.removeAttribute('data-x-label-index');
@@ -341,7 +341,7 @@ const HeatmapGrid: FC<HeatmapGridProps> = ({
341341
});
342342
}
343343
}
344-
344+
345345
return;
346346
}
347347

0 commit comments

Comments
 (0)