Skip to content

Commit

Permalink
🔨fix: 리워드페이지 이미지 경로 재설정
Browse files Browse the repository at this point in the history
rkdcodus committed Oct 7, 2024
1 parent 8114659 commit b0b9b39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion grass-diary/src/pages/RewardPage/RewardPage.tsx
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ import * as S from '@styles/RewardPage/RewardPage.style';
import { semantic } from '@styles/semantic';
import { ReactComponent as Avatar } from '@svg/avatarBg.svg';
import { ReactComponent as Arrow } from '@svg/chevron_right.svg';
import pot from '@image/pot.png';
import { useReward } from '@hooks/api/useReward';
import { useGrassRecord } from '@hooks/api/useGrassRecord';
import { useRewardHistory } from '@hooks/api/useRewardHistory';
@@ -44,7 +45,7 @@ const RewardPage = () => {
<S.RewardSection>
<S.RewardContainer>
<S.GrassCountBox>
<img src="/assets/image/pot.png" alt="image" />
<img src={pot} alt="image" />
<S.CountText>{grassQuery?.totalCount}</S.CountText>
<S.CountCaptionText>내가 심은 잔디</S.CountCaptionText>
</S.GrassCountBox>

0 comments on commit b0b9b39

Please sign in to comment.