Hey guys, I already submitted an issue on GitHub (https://github.com/BuilderIO/qwik/issues/4868) but I just want to make sure that I am not doing anything wrong.
Here is the stackblitz reproduction: https://stackblitz.com/edit/qwik-starter-ttztwp?file=src%2Fcomponents%2Fbig-card.tsx
In short there are 2 components , BigCard and Card.
BigCard has a constant (noImg) that is used as a fallback if there is no src.
If the fallback uses static value then the useComputed$ in the Card component works OK, but if the fallback is assigned to another variable/const the useComputed$ will not update the returned value.
Can someone take a look and tell me if I am doing something wrong.