Skip to content

Commit

Permalink
bug: eslint 제외 부분 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jiohjung98 committed May 11, 2024
1 parent 4250781 commit a65c82d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/signup/JobPosition.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* eslint-disable no-unused-vars */
import React, { useState } from 'react';
import JobPositionItem from './JobPositionItem';
import { jobPosition as allPostion } from '@/constant/jobPosition';
import { motion } from 'framer-motion';

const JobPosition = ({ setSelectedJob, setShowJobPosition }: { setSelectedJob: (job: string) => void; setShowJobPosition: (show: boolean) => void; }) => {
//todo : 이미 선택된 직무를 다시 변경 할 수 있으니까 초기 직무선택값을 받아야함
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const [selectPosition, setSelectPosition] = useState<string | null>(null);

const handleClick = (title: string) => {
Expand Down
1 change: 1 addition & 0 deletions src/components/signup/JobPositionItem.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-unused-vars */
import React from 'react';

interface JobPositionItemProps {
Expand Down
1 change: 1 addition & 0 deletions src/components/signup/PasswordVerification.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react-hooks/exhaustive-deps */
import React, { useEffect, useState } from 'react';
import ToBack from '../shared/sign/ToBack';
import { motion } from 'framer-motion';
Expand Down
1 change: 1 addition & 0 deletions src/components/signup/terms/TermsItem.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-unused-vars */
import React, { Dispatch, MouseEvent } from 'react';

interface TermsItemProps {
Expand Down
1 change: 0 additions & 1 deletion src/components/signup/terms/TermsModal.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import MainContainer from '@/components/shared/MainContainer';
import React, { Dispatch } from 'react';
import { createPortal } from 'react-dom';
Expand Down
1 change: 1 addition & 0 deletions src/components/signup/terms/TermsTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-unused-vars */
import React, { MouseEvent } from 'react';

interface TermsTitleProps {
Expand Down

0 comments on commit a65c82d

Please sign in to comment.