From 1a66669a77928593bfc99d305f6bc91446ad35ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 12:55:42 +0100 Subject: [PATCH] fix: remove wrapper div to show automation lane controls properly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove h-32 wrapper div around AutomationLane - AutomationLane now uses its own height (lane.height, defaults to 80px) - Automation controls (canvas, points) now visible and interactive 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/tracks/TrackList.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/tracks/TrackList.tsx b/components/tracks/TrackList.tsx index ad646c5..dab28cc 100644 --- a/components/tracks/TrackList.tsx +++ b/components/tracks/TrackList.tsx @@ -337,8 +337,8 @@ export function TrackList({ {track.automation.lanes .filter((lane) => lane.parameterId === (track.automation.selectedParameterId || 'volume') && lane.visible) .map((lane) => ( -
-
))} )}