Skip to content

Commit 71dac1f

Browse files
authored
Merge pull request #154 from ASAP-Lettering/fix/#153
[fix]편지 행성 수정 오류 & 마이페이지 간격
2 parents 2fef3fd + b6d516e commit 71dac1f

4 files changed

Lines changed: 4 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/mypage/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ const ProfileInfo = styled.div`
248248
justify-content: center;
249249
gap: 4px;
250250
white-space: nowrap;
251+
padding-right: 15px;
251252
`;
252253

253254
const ProfileName = styled.div`

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)