Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Dec 3, 2024
1 parent 2847499 commit 6c0a2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/manage-productions/line-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6c0a2c0

Please sign in to comment.