Skip to content

Commit

Permalink
fix: 이미지 변경 및 불필요한 타입 변환 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
danah-kim committed Dec 1, 2024
1 parent 06b2f90 commit 2ceea49
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified src/assets/images/plandy_mockup_en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/plandy_mockup_ja.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/plandy_mockup_ko.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/pages/_components/Intro/Intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ function Intro() {
width={750}
height={568}
src={
i18n.language.toString() in PlandyMockupImage
? PlandyMockupImage[i18n.language.toString() as keyof typeof PlandyMockupImage]
i18n.language in PlandyMockupImage
? PlandyMockupImage[i18n.language as keyof typeof PlandyMockupImage]
: PlandyMockupImage.en
}
alt="Plandy Mockup"
Expand Down

0 comments on commit 2ceea49

Please sign in to comment.