Skip to content

Commit 6fcb8a7

Browse files
committed
Fix build: restore quotes in type import and disable quotes rule
1 parent df55dcf commit 6fcb8a7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tracing-web-console/frontend/eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default tseslint.config([
4343
'@typescript-eslint/ban-ts-comment': 'off',
4444
'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
4545
'@typescript-eslint/no-empty-object-type': ['error', { allowInterfaces: 'always' }],
46-
'quotes': ['error', 'backtick', { avoidEscape: true, allowTemplateLiterals: false }],
46+
'quotes': 'off',
4747
'react/jsx-curly-brace-presence': ['error', { props: 'always', children: 'never', propElementValues: 'always' }],
4848
},
4949
},

tracing-web-console/frontend/src/components/FilterPresets.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface FilterPresetsProps {
1717
onLoadPreset: (preset: FilterPreset) => void;
1818
activePresetId: string | null;
1919
currentFilters: {
20-
selectedLevels: Set<import(`@/types/logs`).LogLevel>;
20+
selectedLevels: Set<import("@/types/logs").LogLevel>;
2121
targetFilter: string;
2222
searchFilter: string;
2323
targetLevelFilters: TargetLevelFilter[];

0 commit comments

Comments
 (0)