4👍
✅
Your .includes()
call is backwards. It should be
this.serviceIds.includes(item.service._id)
The general format is array.includes(element)
Source:stackexchange.com