diff --git a/src/components/manage-productions/line-table.tsx b/src/components/manage-productions/line-table.tsx index 8c1fa2a3..35d10905 100644 --- a/src/components/manage-productions/line-table.tsx +++ b/src/components/manage-productions/line-table.tsx @@ -188,7 +188,7 @@ export const LineTable = ({ if (targetRow) { const rect = targetRow.getBoundingClientRect(); setConfirmButtonPosition({ - top: isMobile ? rect.top : rect.top + window.scrollY, + top: isMobile ? rect.top : rect.top - 10, left: isMobile ? rect.left + 20 : rect.right + 10, }); } else {