Skip to content

Commit

Permalink
🐛Fix: 불필요한 import문 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
shlee9999 committed Dec 8, 2024
1 parent 996fd36 commit 9d4fc25
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions src/pages/RegisterPage/Register/index.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
import * as S from './styles'
import { useEffect } from 'react'
import { Helmet } from 'react-helmet-async'
import { useNavigate, useSearchParams } from 'react-router-dom'
import { createRegister } from '~apis/register/createRegister'
import AddOwnerAvatar from '~assets/add-dog-picture.svg'
import { ActionButton } from '~components/Button/ActionButton'
import GenderSelectButton from '~components/GenderSelectButton'
import { Input } from '~components/Input'
import Toast from '~components/Toast'
import { FAMILY_ROLE } from '~constants/familyRole'
import { useGeolocation } from '~hooks/useGeolocation'
import FamilyRoleChoiceModal from '~modals/PositionChoiceModal'
import RegisterAvatarModal from '~modals/RegisterAvatarModal'
import { useModalStore } from '~stores/modalStore'
import { ActionButton } from '~components/Button/ActionButton'
import FamilyRoleChoiceModal from '~modals/PositionChoiceModal'
import { useGeolocation } from '~hooks/useGeolocation'
import { useOwnerProfileStore } from '~stores/ownerProfileStore'
import { validateOwnerProfile } from '~utils/validateOwnerProfile'
import RegisterDogPage from '~pages/RegisterPage/Dog'
import Toast from '~components/Toast'
import { useToastStore } from '~stores/toastStore'
import { useNavigate, useSearchParams } from 'react-router-dom'
import { createRegister } from '~apis/register/createRegister'
import { FamilyRole } from '~types/common'
import { useEffect } from 'react'
import { FAMILY_ROLE } from '~constants/familyRole'
import { validateOwnerProfile } from '~utils/validateOwnerProfile'
import * as S from './styles'

export default function Register() {
const { ownerProfile, setOwnerProfile } = useOwnerProfileStore()
Expand Down

0 comments on commit 9d4fc25

Please sign in to comment.