Skip to content

Commit

Permalink
fix: added missing line
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyOplachko committed Apr 16, 2024
1 parent 27401fb commit 9648da6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FilterPanel/FilterPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface Filter {
name: string
value: boolean
}
export const FilterPanel = ({ data, onFilter, onSimplify }: FilterProps) => {
export const FilterPanel = ({ data, onFilter, onSimplify, options }: FilterProps) => {
const [ipsArray, setIpsArray] = useState<string[]>([]);
// const [portsArray, setPortsArray] = useState<string[]>([]);
// const [ipPortsArray, setIpPortsArray] = useState<string[]>([]);
Expand Down

0 comments on commit 9648da6

Please sign in to comment.