Skip to content

Commit e715a1c

Browse files
committed
fix: correct import case for TimelineColors in ThemeSelector
1 parent abd5abc commit e715a1c

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

log-viewer/src/core/log-parser/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export type IssueType = 'unexpected' | 'error' | 'skip';
99
export type LineNumber = number | 'EXTERNAL' | null; // an actual line-number or 'EXTERNAL'
1010

1111
export type LogSubCategory =
12+
| ''
1213
| 'Method'
1314
| 'System Method'
1415
| 'Code Unit'

log-viewer/src/features/timeline/themes/ThemeSelector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 2025 Certinia Inc. All rights reserved.
33
*/
44

5-
import { DEFAULT_THEME_NAME, THEMES, type TimelineColors } from './themes.js';
5+
import { DEFAULT_THEME_NAME, THEMES, type TimelineColors } from './Themes.js';
66
const THEME_MAP = new Map<string, TimelineColors>(
77
THEMES.map((theme) => [theme.name, theme.colors]),
88
);

0 commit comments

Comments
 (0)