fix: adjust vertical positioning in ModelTable component (#1840)

This commit is contained in:
Logan Yang 2025-09-22 19:34:40 -07:00 committed by GitHub
parent 86b7fcab88
commit 7bed022d8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -391,7 +391,7 @@ export const ModelTable: React.FC<ModelTableProps> = ({
return {
...transform,
x: 0,
y: currentIndex * rowHeight,
y: 0,
};
}
}