Skip to content

Commit b99e625

Browse files
committed
FE: Do not use named default export
1 parent d3a68de commit b99e625

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

frontend/src/components/common/NewTable/ColumnFilter/Filter.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,3 @@ export const Filter = <T,>(props: FilterProps<T>) => {
1818
}
1919
}
2020
};
21-
22-
export default Filter;

frontend/src/components/common/NewTable/ColumnFilter/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Filter from './Filter';
1+
import { Filter } from './Filter';
22

33
export { type FilterableColumnDef, type KafbatFilterVariant } from './types';
44
export { type Persister, useQueryPersister } from './lib';

0 commit comments

Comments
 (0)