Skip to content

Commit 2fef3fd

Browse files
authored
Merge pull request #152 from ASAP-Lettering/hotfix/#151
[Hotfix] 행성관리 간격 고정 및 답장하기 경로 수정
2 parents 81dbf3b + f991747 commit 2fef3fd

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/app/independent/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ const IndependentLetterPage = () => {
212212
buttonType="primary"
213213
size="large"
214214
text="답장하기"
215-
onClick={() => router.push('/send/letter')}
215+
onClick={() => router.push('/send/receiver')}
216216
/>
217217
</ButtonContainer>
218218
</Container>

src/app/letter/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ const LetterPage = () => {
273273
buttonType="primary"
274274
size="large"
275275
text="답장하기"
276-
onClick={() => router.push('/send/letter')}
276+
onClick={() => router.push('/send/receiver')}
277277
/>
278278
</ButtonContainer>
279279
</Container>

src/components/planet/PlanetList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,15 @@ const Box = styled.div`
8787
display: flex;
8888
flex-direction: column;
8989
align-items: flex-start;
90-
gap: 10px;
90+
margin-bottom: 10px;
9191
border-radius: 8px;
9292
background: transparent;
9393
cursor: pointer;
9494
`;
9595

9696
const ContentWrapper = styled.div`
9797
width: 100%;
98+
height: 68px;
9899
display: flex;
99100
justify-content: space-between;
100101
align-items: center;

0 commit comments

Comments
 (0)