fix: remove nested scrollbar in grid editor

Removed overflow-y-auto and maxHeight from the grid container div.
The page itself handles scrolling — nested scroll containers caused
the bottom rows to be cut off after editing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-03-24 15:06:28 +01:00
parent 12b4c61bac
commit 424e5c51d4

View File

@@ -314,7 +314,7 @@ export function StepGridReview({ sessionId, onNext, saveRef }: StepGridReviewPro
)} )}
{/* Right: Grid with row-accept buttons */} {/* Right: Grid with row-accept buttons */}
<div className="space-y-3 overflow-y-auto" style={{ maxHeight: 'calc(100vh - 200px)' }}> <div className="space-y-3">
{/* Zone tables with row-accept buttons */} {/* Zone tables with row-accept buttons */}
{(() => { {(() => {