Skip to content

Commit 7ad521d

Browse files
committed
๐Ÿ›fix(#153): letterId ๋ฐ์ดํ„ฐ ์˜ค๋ฅ˜ ์ˆ˜์ •
1 parent 2fef3fd commit 7ad521d

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

6.87 MB
Loading

โ€Žsrc/app/letter/[id]/page.tsxโ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ const LetterPage = () => {
8787

8888
//ํŽธ์ง€ ํ–‰์„ฑ ๋ณ€๊ฒฝ
8989
const handlePlanet = () => {
90-
router.push(
91-
`/planet/move?letter=${letterData?.id}&senderName=${letterData?.sender}`
92-
);
90+
router.push(`/planet/move?letter=${id}&senderName=${letterData?.sender}`);
9391
};
9492

9593
//์‚ญ์ œ ๋ชจ๋‹ฌ ๊ด€๋ฆฌ

โ€Žsrc/app/onboarding/page.tsxโ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const Onboarding = () => {
6363
<br />
6464
์›ํ•˜๋Š” ํ–‰์„ฑ ์•ˆ์— ํŽธ์ง€๋ฅผ ๋ณด๊ด€ํ•  ์ˆ˜ ์žˆ์–ด์š”
6565
</SubTitle>
66-
<ContentImage src="/assets/gif/onboarding.gif" />
66+
<ContentImage src="/assets/gif/onboarding_final.gif" />
6767
</Content>
6868
</ContentSlider>
6969
</ContentWrapper>
@@ -196,6 +196,7 @@ const LetterImage = styled.img`
196196
aspect-ratio: 1; // ์ •์‚ฌ๊ฐํ˜• ๋น„์œจ ์œ ์ง€
197197
border-radius: 5px;
198198
object-fit: cover;
199+
background-color: black;
199200
`;
200201

201202
const ContentImage = styled.img`

0 commit comments

Comments
ย (0)