Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SachiGoto committed Feb 23, 2024
1 parent 8f37432 commit 3ca1d40
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/components/input/input-form.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useState } from 'react'
import { useState } from 'react'
import { IconType } from 'react-icons'
import {
Input as ChakraFormInput,
Expand All @@ -10,7 +9,7 @@ import {
useColorModeValue
} from '@chakra-ui/react'
import { FiEye, FiEyeOff } from 'react-icons/fi'
import { FiEye, FiEyeOff } from 'react-icons/fi'

type InputFormProps = {
rightIcon?: IconType
hasEyeIcon?: boolean
Expand All @@ -22,8 +21,6 @@ export const InputForm = forwardRef<ChakraInputProps & InputFormProps, 'input'>(
const placeholdercolor = useColorModeValue('gray.400', 'gray.600')
const [show, setShow] = useState(false)
const handleClick = () => setShow(!show)
const [show, setShow] = useState(false)
const handleClick = () => setShow(!show)

return (
<InputGroup minW={'100%'}>
Expand Down

0 comments on commit 3ca1d40

Please sign in to comment.