Remove '..' in import

graphql
Jason Zhu 2023-06-04 15:30:29 +10:00
parent 7db1852489
commit fa0d194b74
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ import { motion } from 'framer-motion';
import './EvolutionSpecies.css';
import { LazyLoadImage } from 'react-lazy-load-image-component';
import { colorTypeGradients } from 'components/utils';
import { useAppDispatch } from '../../app/hooks';
import { fetchSelectedPokemonInfo } from '../../features/InfoDialog/infoDialogSlice';
import { useAppDispatch } from 'app/hooks';
import { fetchSelectedPokemonInfo } from 'features/InfoDialog/infoDialogSlice';
export type EvolutionSpeciesProps = {
types: string[];