Array of the likes is updating but it doesn in template, any ideas what it could be ?
It’s hard to help you unless you can paste some of the code here.
Array mutations like someArray.push(thing)
aren’t autotracked. You can either switch to TrackedArray or change your mutations to a pattern that always does assignment like:
this.myArray = [...this.myArray, newItem];