Commit ab93a5c
fix(serenity): restore parent_id: null in updateProjectTag body
The previous fix used `?? undefined` to satisfy TypeScript, but `null ?? undefined`
evaluates to `undefined`, which JSON-serializes as a missing key — breaking the
null-promotion contract. Cast to `any` instead so the null is preserved on the wire
while TypeScript is satisfied.
Introduced by: N/A
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent b6d1aca commit ab93a5c
1 file changed
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
581 | 581 | | |
582 | 582 | | |
583 | 583 | | |
584 | | - | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
585 | 587 | | |
586 | 588 | | |
587 | 589 | | |
| |||
0 commit comments