Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/assets/gif/onboarding_final.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions src/app/letter/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ const LetterPage = () => {

//편지 행성 변경
const handlePlanet = () => {
router.push(
`/planet/move?letter=${letterData?.id}&senderName=${letterData?.sender}`
);
router.push(`/planet/move?letter=${id}&senderName=${letterData?.sender}`);
};

//삭제 모달 관리
Expand Down
1 change: 1 addition & 0 deletions src/app/mypage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ const ProfileInfo = styled.div`
justify-content: center;
gap: 4px;
white-space: nowrap;
padding-right: 15px;
`;

const ProfileName = styled.div`
Expand Down
3 changes: 2 additions & 1 deletion src/app/onboarding/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const Onboarding = () => {
<br />
원하는 행성 안에 편지를 보관할 수 있어요
</SubTitle>
<ContentImage src="/assets/gif/onboarding.gif" />
<ContentImage src="/assets/gif/onboarding_final.gif" />
</Content>
</ContentSlider>
</ContentWrapper>
Expand Down Expand Up @@ -196,6 +196,7 @@ const LetterImage = styled.img`
aspect-ratio: 1; // 정사각형 비율 유지
border-radius: 5px;
object-fit: cover;
background-color: black;
`;

const ContentImage = styled.img`
Expand Down