Skip to content

Commit

Permalink
Drop unused exports
Browse files Browse the repository at this point in the history
They were added for a prior implementation of something and are no
longer used /needed.
  • Loading branch information
danielbeardsley committed Feb 17, 2024
1 parent 6645d3e commit 75e5af6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/ui/filters/filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface FilterProps extends React.ComponentProps<'input'> {
getOnOnlyClick?: (name: string) => () => void;
}

export const Filter = (props: FilterProps) => {
const Filter = (props: FilterProps) => {
const {
className = '',
as: Component = 'div',
Expand Down
1 change: 0 additions & 1 deletion packages/ui/src/ui/filters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import merge from 'lodash/merge';
import { FilterFieldsData } from '../../types';
import { getInitialValues } from './filters.utils';
import { Filters as BaseComponent } from './filters';
export { Filter } from './filters';

interface FiltersProps
extends Omit<
Expand Down

0 comments on commit 75e5af6

Please sign in to comment.