Contents
PR Summary
What problems was I solving
The BroadcastDialog component declared a visiblePages variable as a plain alias of pages, never filtered or transformed it, and then used it only in the immediately following JSX expression. This created misleading indirection that suggested future filtering logic but added none.
What user-facing changes did I ship
No user-facing changes. The broadcast dialog renders the same list of selected pages exactly as before.
How I implemented it
Deleted the const visiblePages = pages; assignment and changed the render loop to map over pages directly instead of visiblePages.
Description for the changelog
Removed the unused visiblePages alias in BroadcastDialog; the selected page list is now rendered directly from pages with no behavioral change.
BroadcastDialog dead alias removal
low1 fileRemoves the unused `visiblePages` alias in `BroadcastDialog` and renders the page list directly from `pages`.