79523507

Date: 2025-03-20 16:17:21
Score: 1
Natty:
Report link

The problem was in how I was dynamically updating queryParams. I was changing a property on the object, e.g.

this.queryParams.property = 'value'

Instead of assigning a new object, e.g.

this.queryParams = { ...this.queryParams, property: 'value' }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kevin