docs/plans/4930-resolve-pr-feedback.md
Resolve new actionable review feedback on #4930 and close the corresponding PR thread without regressing the merged-cell border fix.
#4930 fix(table): resolve merged border neighborspackages/table/src/lib/queries/getAdjacentTableCell.ts:40
Reviewer concern: adjacent-cell lookups now linearly scan the full table on every top/left lookup, which can turn border operations into a quadratic hot path on large selections.getAdjacentTableCell currently calls findCellByIndexes, which flattens and scans the whole table each time.getSelectedCellBorderTargets and isSelectedCellBorder do these lookups inside per-cell loops, so the new merged-cell fix did introduce avoidable repeated table scans.packages/tablepnpm check