Remove unused dependencies
This commit is contained in:
parent
7e3c6a9463
commit
977c1df13c
2 changed files with 1 additions and 5 deletions
|
|
@ -22,13 +22,11 @@ interface Props {
|
|||
}
|
||||
|
||||
const JobSection = (props: Props) => {
|
||||
const { party } = useSnapshot(appState)
|
||||
const { t } = useTranslation("common")
|
||||
|
||||
const [job, setJob] = useState<Job>()
|
||||
const [imageUrl, setImageUrl] = useState("")
|
||||
|
||||
const { party, jobSkills } = useSnapshot(appState)
|
||||
|
||||
const [numSkills, setNumSkills] = useState(4)
|
||||
const [skills, setSkills] = useState<{ [key: number]: JobSkill | undefined }>(
|
||||
[]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,9 @@
|
|||
import React, { useEffect, useState } from "react"
|
||||
import { getCookie, setCookie } from "cookies-next"
|
||||
import { useRouter } from "next/router"
|
||||
import { useSnapshot } from "valtio"
|
||||
import { useTranslation } from "react-i18next"
|
||||
import InfiniteScroll from "react-infinite-scroll-component"
|
||||
|
||||
import { appState } from "~utils/appState"
|
||||
import api from "~utils/api"
|
||||
|
||||
import * as Dialog from "@radix-ui/react-dialog"
|
||||
|
|
|
|||
Loading…
Reference in a new issue