From d5d01701096c45a14abaa722410039380d3d4ab0 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Wed, 11 Feb 2026 11:22:16 +0700 Subject: [PATCH] fix(lib): update imports for treemap chart component --- libs/ui/src/lib/treemap-chart/treemap-chart.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui/src/lib/treemap-chart/treemap-chart.component.ts b/libs/ui/src/lib/treemap-chart/treemap-chart.component.ts index ce85c300e..a80876f6a 100644 --- a/libs/ui/src/lib/treemap-chart/treemap-chart.component.ts +++ b/libs/ui/src/lib/treemap-chart/treemap-chart.component.ts @@ -25,7 +25,7 @@ import { } from '@angular/core'; import { DataSource } from '@prisma/client'; import { Big } from 'big.js'; -import type { TooltipOptions, ChartData } from 'chart.js'; +import type { ChartData, TooltipOptions } from 'chart.js'; import { LinearScale } from 'chart.js'; import { Chart, Tooltip } from 'chart.js'; import { TreemapController, TreemapElement } from 'chartjs-chart-treemap';