From fa0d194b740d3713403ce3128617d16946f8f632 Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Sun, 4 Jun 2023 15:30:29 +1000 Subject: [PATCH] Remove '..' in import --- src/components/EvolutionSpecies/EvolutionSpecies.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/EvolutionSpecies/EvolutionSpecies.tsx b/src/components/EvolutionSpecies/EvolutionSpecies.tsx index 33e9ebb..fc80676 100644 --- a/src/components/EvolutionSpecies/EvolutionSpecies.tsx +++ b/src/components/EvolutionSpecies/EvolutionSpecies.tsx @@ -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[];