this.firmCategories = this.firmCategories.filter(x => {
x.id !== firmCatId;
});
I can see that there is one element of the firmCategories array that has the matching ID by using my debugger, however, I am left with a completely empty array after this executes.
I would expect to have every element except for the one that has the matching ID leftover. What's up?