Skip to content

Commit

Permalink
🔨fix: 이미지 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rkdcodus committed Oct 7, 2024
1 parent 1c6f691 commit 8114659
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion grass-diary/src/pages/Error/NotFoundPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Header from '@components/Layout/Header';
import useIsMobile from '@hooks/useIsMobile';
import * as S from '@styles/Error/NotFoundPage.style';
import { semantic } from '@styles/semantic';
import errorIcon from '@svg/error_outline.svg';
import { ReactComponent as Arrow } from '@svg/chevron_right.svg';
import { useNavigate } from 'react-router-dom';

Expand All @@ -17,7 +18,7 @@ const NotFoundPage = () => {
<Header />
<S.Container>
<S.ErrorSection>
<img src="../src/assets/svg/error_outline.svg" alt="error_image" />
<img src={errorIcon} alt="error_image" />
<S.ErrorTextBox>
<S.HeaderText>
페이지를{isMobile ? <br /> : ' '}찾을 수 없어요
Expand Down

0 comments on commit 8114659

Please sign in to comment.