Skip to content

Commit

Permalink
Remove unused onItemHighlighted callback
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarenerd committed Oct 21, 2024
1 parent 6272805 commit fdbfab9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ interface ColumnSelectorModalPopupProps {
readonly anchorElement: HTMLElement;
readonly searchInput?: string;
readonly focusInput?: boolean;
readonly onItemHighlighted: (columnSchema: ColumnSchema) => void;
readonly onItemSelected: (columnSchema: ColumnSchema) => void;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,6 @@ export const DropDownColumnSelector = (props: DropDownColumnSelectorProps) => {
columnSelectorDataGridInstance={columnSelectorDataGridInstance}
anchorElement={ref.current}
focusInput={focusInput}
onItemHighlighted={columnSchema => {
console.log(`onItemHighlighted ${columnSchema.column_name}`);
}}
onItemSelected={columnSchema => {
renderer.dispose();
setSelectedColumnSchema(columnSchema);
Expand Down

0 comments on commit fdbfab9

Please sign in to comment.