Skip to content

Commit

Permalink
chore: 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
WithJo committed Aug 28, 2024
1 parent 531dad3 commit afdfe26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/SelectPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ export default function SelectPage() {
setIsModalOpen(false);
};

const handleDragStart = (info: PanInfo) => {
const handleDragStart = (event: Event, info: PanInfo) => {

Check failure on line 42 in src/pages/SelectPage.tsx

View workflow job for this annotation

GitHub Actions / e2e

'event' is declared but its value is never read.
initialX.current = info.point.x;
};

const handleDragEnd = (info: PanInfo) => {
const handleDragEnd = (event: Event, info: PanInfo) => {

Check failure on line 46 in src/pages/SelectPage.tsx

View workflow job for this annotation

GitHub Actions / e2e

'event' is declared but its value is never read.
const deltaX = info.point.x - initialX.current;
if (deltaX >= 60) {
setAnimateLeftToRight(true);
Expand Down

0 comments on commit afdfe26

Please sign in to comment.