From b62a7a264e876aac568aa0aa3bd0133aec264b17 Mon Sep 17 00:00:00 2001 From: chaeminseok Date: Mon, 29 Jan 2024 02:26:38 +0900 Subject: [PATCH 1/4] write readme --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 440f57f5..a7c71344 100644 --- a/README.md +++ b/README.md @@ -127,11 +127,11 @@ _가격 걱정 없이 합리적인 가격으로 득텔 하세요!_ @@ -278,4 +278,5 @@ _가격 걱정 없이 합리적인 가격으로 득텔 하세요!_ - PM/UX/BE 직군 모두와 협업하기 적극적인 의사소통과 질문하는 문화를 만들었습니다. 각자 자신의 업무만 하는 것이 아니라 다른 팀원의 업무도 도와줄 수 있으면 적극적으로 도울 수 있는 팀플레이를 만드려고 하였습니다. 팀원 이탈이 많은 프로젝트였고 다들 넓은 범위를 커버하느라 수고가 많았지만 잘 버텨주셔서 감사한 프로젝트였습니다! - 채민석 - - 가문의 영광입니다! + + - 기획 디자인 프론트엔드 백엔드 끼리 함께 협업하는 프로젝트를 진행한게 너무 좋은 경험이였습니다. 매일 스크럼을 진행하면서 서로 진행상황, 문제점, 개선점을 공유하고 문제점에 대해 같이 해결해 나아갔습니다. 팀원분들 모두 너무 고맙고 고생많으셨습니다! From c26c977c8bbe1173766343704e3d8d341df5842b Mon Sep 17 00:00:00 2001 From: chaeminseok Date: Fri, 2 Feb 2024 02:14:03 +0900 Subject: [PATCH 2/4] =?UTF-8?q?fix:=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20?= =?UTF-8?q?=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/signInPage/SignIn.style.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/pages/signInPage/SignIn.style.ts b/src/pages/signInPage/SignIn.style.ts index 8c4c5b9a..8f806065 100644 --- a/src/pages/signInPage/SignIn.style.ts +++ b/src/pages/signInPage/SignIn.style.ts @@ -7,8 +7,8 @@ export const SignInContainer = styled.form` display: flex; flex-direction: column; align-items: center; - - margin: 100px 20px 0 20px; + padding: 100px 20px 30px 20px; + background-color: white; `; export const SignInLogo = styled(LoginLogo)``; @@ -17,9 +17,7 @@ export const SignInInputContainer = styled.div` display: flex; flex-direction: column; gap: 24px; - margin: 80px 0 40px 0; - width: 100%; `; From 6ea91e0b2884a11d3bfd9976a067e4f124806833 Mon Sep 17 00:00:00 2001 From: chaeminseok Date: Mon, 8 Apr 2024 05:03:39 +0900 Subject: [PATCH 3/4] =?UTF-8?q?feat:=EC=84=9C=EB=B2=84=20=EC=A3=BC?= =?UTF-8?q?=EC=86=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/constants/api.ts | 2 +- src/pages/myPage/info/Info.tsx | 2 ++ src/pages/searchPage/components/searchBar/SearchBar.tsx | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/constants/api.ts b/src/constants/api.ts index c898ebe5..c989b725 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -1,4 +1,4 @@ -export const BASE_URL = "https://3.35.83.30.nip.io"; +export const BASE_URL = "https://43.200.52.7.nip.io"; export const END_POINTS = { LOGIN: "/v1/members/signin", diff --git a/src/pages/myPage/info/Info.tsx b/src/pages/myPage/info/Info.tsx index 65000749..32fcf749 100644 --- a/src/pages/myPage/info/Info.tsx +++ b/src/pages/myPage/info/Info.tsx @@ -36,10 +36,12 @@ const Info = () => { await logout(); localStorage.removeItem(ACCESS_TOKEN); localStorage.removeItem(REFRESH_TOKEN); + localStorage.removeItem("searchFilterStorage"); setIsLoggedIn(false); setUserInfo(null); queryClient.removeQueries({ queryKey: [KEY.PURCHASE_LIST] }); queryClient.removeQueries({ queryKey: [KEY.SALE] }); + navigate(PATH.ROOT); } catch (err) { handleToast(true, [<>로그아웃 실패. 잠시 후 다시 시도해 주세요]); diff --git a/src/pages/searchPage/components/searchBar/SearchBar.tsx b/src/pages/searchPage/components/searchBar/SearchBar.tsx index 2c5de7d5..9c19ab9e 100644 --- a/src/pages/searchPage/components/searchBar/SearchBar.tsx +++ b/src/pages/searchPage/components/searchBar/SearchBar.tsx @@ -1,4 +1,4 @@ -import { PATH } from "@/constants/path"; +import { PATH } from "@constants/path"; import { useSearchFilterInfoStore } from "@store/store"; import { formatDateMonthAndDay } from "@utils/dateFomaterMonthDay"; import { useNavigate } from "react-router-dom"; From 49f7fdf2b9cf02170e9e4ba8bc8eb40aa2ad6cb6 Mon Sep 17 00:00:00 2001 From: chaeminseok Date: Mon, 8 Apr 2024 05:17:50 +0900 Subject: [PATCH 4/4] =?UTF-8?q?feat:=20=EC=A3=BC=EC=86=8C=EC=9D=B4?= =?UTF-8?q?=EC=A0=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/fetchSeachList.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apis/fetchSeachList.ts b/src/apis/fetchSeachList.ts index 3ca29535..51701362 100644 --- a/src/apis/fetchSeachList.ts +++ b/src/apis/fetchSeachList.ts @@ -36,7 +36,7 @@ export const fetchSearchList = async ( }, }, ); - + console.log("response data", response); return response.data.data; } catch (error) { throw new Error("호텔 검색에 실패했습니다");