bugfix: event handler

This commit is contained in:
cv
2021-04-10 23:12:00 +02:00
parent 4271b27686
commit 5bb39b8f89
11 changed files with 20 additions and 31 deletions
@@ -7,7 +7,7 @@ export default function BlockIconBtn(props) {
size={props.size || 'xs'}
icon={<FiMinusCircle />}
colorScheme='purple'
onClick={() => props.clickHandler}
onClick={props.clickHandler}
/>
);
}