Skip to content

Commit 90282b6

Browse files
authored
fix: 4차 QA 반영 (#143)
* fix: 데스크탑에서 게시판이 안 보이는 오류 해결 * fix: 공유 요청 수락 후의 toast 모달 텍스트 길이 조정
1 parent 561a24a commit 90282b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/Home/components/GoToLetterBoard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import goToLetterBoard from '@/assets/images/go-to-letter-board.png';
44

55
const GoToLetterBoard = () => {
66
return (
7-
<div className="absolute right-[-56%] bottom-[28%] z-9 flex w-full md:right-[-42%]">
7+
<div className="absolute right-[-56%] bottom-[28%] z-9 flex w-full md:right-[-42%] lg:right-[-20%]">
88
<div className="text-left">
9-
<p className="text-gray-60 body-r mb-1 ml-2 dark:text-white">게시판</p>
9+
<p className="text-gray-60 body-r mb-1 ml-2">게시판</p>
1010
<Link to="/board/letter">
1111
<img
1212
src={goToLetterBoard}

src/pages/Share/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ShareApprovalPage = () => {
2626
if (action === 'approve') {
2727
setToastActive({
2828
toastType: 'Success',
29-
title: '편지를 성공적으로 공유하였습니다. 게시판에서 확인해보세요!',
29+
title: '편지가 공유되었습니다. 게시판에서 확인해보세요!',
3030
time: 5,
3131
});
3232
} else {

0 commit comments

Comments
 (0)