Skip to content

Commit

Permalink
use Maybe instead of ?
Browse files Browse the repository at this point in the history
  • Loading branch information
fdelemarre committed Jun 27, 2024
1 parent 1f44f74 commit e09f15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webapp/components/table/BasicTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface BasicTableProps {
[key: TableColumn["name"]]: string;
}[];
onChange?: (cell: Maybe<string>, rowIndex: number, column: TableColumn["name"]) => void;
showRowIndex?: boolean;
showRowIndex: Maybe<boolean>;
}

export const BasicTable: React.FC<BasicTableProps> = React.memo(
Expand Down

0 comments on commit e09f15a

Please sign in to comment.