Skip to content

Commit

Permalink
fix compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
joergreichert committed Dec 3, 2023
1 parent de227bb commit e04cfb1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/SearchCheckbox/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { FC, ReactElement, useState, ReactNode } from 'react'
import classNames from 'classnames'
import { FC } from 'react'

export interface FullTextFilter {
filter?: string;
Expand All @@ -12,7 +11,7 @@ export interface FullTextFilter {
}

export interface SearchCheckboxesType {
index: number,
index?: number,
selectedFields?: string[];
marketFilterFulltext: FullTextFilter;
setMarketFilterFulltext: (data: FullTextFilter) => void;
Expand Down

0 comments on commit e04cfb1

Please sign in to comment.