Skip to content

Commit

Permalink
Merge pull request #93 from DDD-Community/feature/qa-junseub
Browse files Browse the repository at this point in the history
FIX/QA
  • Loading branch information
junseublim authored Aug 21, 2024
2 parents c186955 + 45a735f commit 878cc6e
Show file tree
Hide file tree
Showing 10 changed files with 111 additions and 58 deletions.
25 changes: 13 additions & 12 deletions public/icons/linkShare.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/(home)/_components/GoToLoginModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const GoToLoginModal = ({ isOpen, onClose }: ModalProps) => {
<Modal isOpen={isOpen} onClose={onClose}>
<Modal.CenterModal icon={<SurprisedIcon />}>
<Modal.Title>로그인 후 이용 가능합니다.</Modal.Title>
<Modal.Content>지금 폴라보와 함께 추억을 담아보세요!</Modal.Content>
<Modal.Content>지금 폴라보와 함께 추억을 공유해보세요!</Modal.Content>
<Modal.CenterConfirm
confirmText="확인"
onConfirm={() => router.push('/login')}
Expand Down
2 changes: 1 addition & 1 deletion src/app/(onboarding)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const LoginPage = () => {
src={ThreePolaroids}
priority
alt="polaroids icon"
className="px-20 pb-10"
className="object-contain px-20 pb-10"
/>
<div className="flex w-full flex-col items-center pb-[97px]">
<div className="pb-2 text-center text-xs">
Expand Down
11 changes: 11 additions & 0 deletions src/app/error.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use client'

const ErrorPage = () => {
return (
<div className="flex h-dvh flex-col items-center justify-center">
<h1>오류가 발생했어요.</h1>
</div>
)
}

export default ErrorPage
4 changes: 2 additions & 2 deletions src/app/mypage/boards/components/BoardEditPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const BoardEditPopup = ({
}: BoardEditPopupProps) => {
return (
<Popup isOpen={isOpen} close={close}>
<div className="flex w-[148px] cursor-pointer flex-col rounded-lg bg-gray-0 py-2 pl-[22px] shadow-popup">
<div className="text-xs text-negative" onClick={clickDelete}>
<div className="flex w-[168px] cursor-pointer flex-col rounded-lg bg-gray-0 py-2 pl-[22px] shadow-popup">
<div className="text-sm text-negative" onClick={clickDelete}>
<span>보드 삭제하기</span>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Pages = () => {
return pages.map((page) => (
<span
key={page}
className={`text-xs leading-5 ${page === currentPage ? 'underline' : ''}`}
className={`text-sm leading-5 ${page === currentPage ? 'underline' : ''}`}
onClick={() => paginate(page)}
>
{page}
Expand Down
Loading

0 comments on commit 878cc6e

Please sign in to comment.