Skip to content

Commit

Permalink
πŸ”– release: 2.1
Browse files Browse the repository at this point in the history
πŸ”– release: 2.1
  • Loading branch information
rkdcodus authored Oct 7, 2024
2 parents 54365dd + 4069657 commit 615f642
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion grass-diary/src/pages/RewardPage/RewardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const RewardPage = () => {
<S.RewardSection>
<S.RewardContainer>
<S.GrassCountBox>
<img src="../src/assets/image/pot.png" alt="image" />
<img src="/assets/image/pot.png" alt="image" />
<S.CountText>{grassQuery?.totalCount}</S.CountText>
<S.CountCaptionText>λ‚΄κ°€ 심은 μž”λ””</S.CountCaptionText>
</S.GrassCountBox>
Expand Down

0 comments on commit 615f642

Please sign in to comment.