@stefano if you see the GetComponent block’s parameter then you can see it needs Id of the component that you want but you are giving a card view component at place of a Id
You are using GetComponent block which expects an ID, but you are trying to insert a Component instead. If you already have the component object, (which in this case “component” variable) you don’t need to use GetComponent block.
GetComponent = Gets a component by ID.
GetID = Gets ID by a component.
Never create a variable that will only be used once in one place. Variables were meant to be created when you need them in multiple places to reduce the amount of blocks you need, but in this case removing the variable would reduce the block amount by one.