Fix checkbox issues (#681)

* Fix checkbox issues

* Fix theme
This commit is contained in:
Charles Bochet
2023-07-15 14:16:02 -07:00
committed by GitHub
parent 2bbcf6980a
commit b982788100
11 changed files with 88 additions and 57 deletions

View File

@ -114,8 +114,8 @@ export function CompanyBoardCard() {
[updatePipelineProgress],
);
const handleCheckboxChange = () => {
setSelected(!selected);
const handleCheckboxChange = (checked: boolean) => {
setSelected(checked);
};
if (!company || !pipelineProgress) {