As the title mentions, onRemove doesn’t get triggered with removable.
<s-clickable-chip
key={filter.key}
removable
onClick={() => filter.onRemove(filter.key)}
onRemove={() => {
console.log("test");
filter.onRemove(filter.key);
}}>
^ onClick works but onRemove does not