fix(KB-124): resolve ntfy duplicate notifications and spec editor layout

- Fix duplicate ntfy.sh notifications on task merge events
- Fix spec editor layout overflow in TaskDetailModal
- Add regression test coverage for merge notifications
- Add changeset for notification fix
This commit is contained in:
gsxdsm
2026-03-30 07:49:44 -07:00
parent 626e395202
commit 36a7bbe18a
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
---
"@dustinbyrne/kb": patch
---
Remove duplicate ntfy notification on task merge
Previously, when a task was merged to main, two identical notifications were sent because both `task:moved` (to "done") and `task:merged` events triggered notifications. Now only the `task:merged` event sends the notification, eliminating the duplicate.