Skip to content

Commit 0d8e48e

Browse files
authored
Merge pull request #134 from YAPP-Github/fix/temp-image-unoptimized
2 parents 69ddced + a7081c2 commit 0d8e48e

File tree

15 files changed

+32
-1
lines changed

15 files changed

+32
-1
lines changed

src/app/(auth)/login/page.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ export default function LoginPage() {
2727
alt='로그인 배경화면'
2828
fill
2929
priority
30+
// TODO: 추후 제거
31+
unoptimized
3032
/>
3133

3234
<GNB
@@ -50,6 +52,8 @@ export default function LoginPage() {
5052
alt='로그인 일러스트'
5153
width={149}
5254
height={139}
55+
// TODO: 추후 제거
56+
unoptimized
5357
/>
5458
</div>
5559

src/app/(home)/_components/RecentCheers/RecentCheers.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ const RecentSupportCard = ({
9696
alt={`${store.name} 가게 이미지`}
9797
className={styles.storeImage}
9898
src={store.imageUrl}
99+
// TODO: 추후 제거
100+
unoptimized
99101
/>
100102
<VStack gap={2}>
101103
<Text as='span' typo='body2Sb' color='text.normal'>

src/app/(home)/_components/RecentlySupportStories/RecentlySupportStories.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ const SupportedStoreCard = ({
100100
src={imageUrl}
101101
alt={`${storeName} 가게 이미지`}
102102
objectFit='cover'
103+
// TODO: 추후 제거
104+
unoptimized
103105
/>
104106
</div>
105107
<VStack className={styles.supportedStoreCardContent}>

src/app/(home)/_components/RegisterPopup/RegisterPopup.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ export const RegisterPopup = () => {
7777
height: "214px",
7878
marginLeft: "10px",
7979
}}
80+
// TODO: 추후 제거
81+
unoptimized
8082
/>
8183
</div>
8284
</div>

src/app/(home)/_components/ServiceIntroBottomSheet/ServiceIntroBottomSheet.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ export const ServiceIntroBottomSheet = () => {
111111
src={content.imageSrc}
112112
alt={content.imageAlt}
113113
priority
114+
// TODO: 추후 제거
115+
unoptimized
114116
/>
115117
</motion.div>
116118
</AnimatePresence>

src/app/(home)/_components/StoreStory/StoreStory.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ const StoreStoryCard = ({ src, title, description }: StoreStoryCardProps) => {
9999
src={src}
100100
alt={`${title} 가게 이야기 이미지`}
101101
className={styles.storyImage}
102+
// TODO: 추후 제거
103+
unoptimized
102104
/>
103105
<div className={styles.storyCardGradient} />
104106
<VStack gap={4} style={{ zIndex: 1, position: "relative" }}>

src/app/(home)/_components/Story/StoryList/StoryList.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ export const StoryList = () => {
3333
alt={`스토리 이미지 ${story.storyId}`}
3434
className={styles.storyImage}
3535
objectFit='cover'
36+
// TODO: 추후 제거
37+
unoptimized
3638
/>
3739
</div>
3840
</div>

src/app/(store)/stores/(list)/_components/StoreCategory/StoreCategory.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ export const StoreCategories = ({
4141
alt={category.label}
4242
width={category.label === "전체" ? 26 : 24}
4343
height={category.label === "전체" ? 26 : 24}
44+
// TODO: 추후 제거
45+
unoptimized
4446
/>
4547
</div>
4648
<Text

src/app/(store)/stores/(list)/_components/StoreList/StoreList.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ const StoreImages = ({ storeId }: { storeId: number }) => {
131131
data-first={index === 0}
132132
data-last={index === images.length - 1}
133133
className={styles.storeImage}
134+
// TODO: 추후 제거
135+
unoptimized
134136
/>
135137
) : (
136138
<EmptyImage

src/app/(store)/stores/[storeId]/_components/StoreInfo/StoreInfo.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ const StoreInfoImageCarousel = ({ storeId }: { storeId: number }) => {
4949
src={image}
5050
fill
5151
alt={`${index + 1}번째 가게 이미지`}
52+
// TODO: 추후 제거
53+
unoptimized
5254
/>
5355
</div>
5456
))}

0 commit comments

Comments
 (0)