feat(analysis): bold month names for DB-sourced data, regular for external

This commit is contained in:
Jose Selesan
2026-08-27 11:37:43 -03:00
parent 28f9dea7ba
commit d8aed4970c
3 changed files with 23 additions and 6 deletions

View File

@@ -113,6 +113,7 @@ export type MonthlyLast = {
month: string;
type: "BELO" | "BLUE" | "BNA";
buy: number;
source: "db" | "external";
};
export function getMonthlyLast(): Promise<MonthlyLast[]> {