From 2b1ff6613a5bd6b90ebee2b2eae63fefbd0f481e Mon Sep 17 00:00:00 2001 From: myeongheonhong Date: Wed, 14 Feb 2024 10:52:40 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[=20chore=20]=20=ED=91=B8=ED=84=B0=20?= =?UTF-8?q?=EB=A7=81=ED=81=AC=20=EC=A3=BC=EC=86=8C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/footer.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/footer.tsx b/components/footer.tsx index 2520693..bbe497b 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -1,11 +1,9 @@ -import { LogoImg } from '@/public/assets/images'; import theme from '@/styles/theme'; import styled from 'styled-components'; -import Image from 'next/image'; export default function Footer() { const handleTermsOfUse = () => { - window.open('https://mercurial-fuschia-8f2.notion.site/7e827f42eecb46f382ac46cf183245d3'); + window.open('https://hwajeonglee.notion.site/080d632659a94e1b9131567947f679a3'); }; const handlePrivacyPolicy = () => { From 843cde7450f91143249cd087211cabebb500fe22 Mon Sep 17 00:00:00 2001 From: myeongheonhong Date: Wed, 14 Feb 2024 10:53:21 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[=20chore=20]=20=EC=82=AC=EC=9A=A9=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8A=94=20=EB=B3=80=EC=88=98=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C=20=EB=B0=8F=20=EC=BD=98=EC=86=94=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Cakes/CakesForm.tsx | 1 - components/Cakes/CakesPay.tsx | 2 +- components/Mypage/EditWishes/index.tsx | 2 -- components/Mypage/index.tsx | 1 - components/Wishes/WishesForm/WishesStep1.tsx | 1 - pages/_app.tsx | 1 - 6 files changed, 1 insertion(+), 7 deletions(-) diff --git a/components/Cakes/CakesForm.tsx b/components/Cakes/CakesForm.tsx index 0d08cc5..a9f2fe9 100644 --- a/components/Cakes/CakesForm.tsx +++ b/components/Cakes/CakesForm.tsx @@ -11,7 +11,6 @@ import { StyledBox } from '../Common/Box'; import BackBtn from '../Common/Button/BackBtn'; import { CakeListType } from '@/types/cakes/cakeListType'; import { useGetPublicWishes } from '@/hooks/queries/public'; -import { UseMutateFunction } from 'react-query'; import theme from '@/styles/theme'; import { useEffect, useState } from 'react'; diff --git a/components/Cakes/CakesPay.tsx b/components/Cakes/CakesPay.tsx index 3a14519..3849b48 100644 --- a/components/Cakes/CakesPay.tsx +++ b/components/Cakes/CakesPay.tsx @@ -37,7 +37,7 @@ interface CakesPayProps { } export default function CakesPay(props: CakesPayProps) { - const { handlePrevStep, handleNextStep, selectedCake, wishesId, postPublicCakesData } = props; + const { handlePrevStep, selectedCake, wishesId, postPublicCakesData } = props; const { publicWishesData } = useGetPublicWishes(wishesId); diff --git a/components/Mypage/EditWishes/index.tsx b/components/Mypage/EditWishes/index.tsx index fdc1e93..4c6f04b 100644 --- a/components/Mypage/EditWishes/index.tsx +++ b/components/Mypage/EditWishes/index.tsx @@ -102,8 +102,6 @@ export default function EditWishesContainer() { handlePutProgressWishes(); }; - console.log(progressData); - return ( <> diff --git a/components/Mypage/index.tsx b/components/Mypage/index.tsx index d9e7431..26a0449 100644 --- a/components/Mypage/index.tsx +++ b/components/Mypage/index.tsx @@ -10,7 +10,6 @@ import Modal from '@/components/Common/Modal'; import useModal from '@/hooks/common/useModal'; import { MypageCakeImg } from '@/public/assets/images'; import { useEffect, useState } from 'react'; -import { deleteUserInfo } from '@/api/user'; import { useGetMainProgressData, usePatchProgressWishes } from '@/hooks/queries/wishes'; import CancleWishesModal from '../Common/Modal/CancelWishesModal'; diff --git a/components/Wishes/WishesForm/WishesStep1.tsx b/components/Wishes/WishesForm/WishesStep1.tsx index 44f83a2..225e768 100644 --- a/components/Wishes/WishesForm/WishesStep1.tsx +++ b/components/Wishes/WishesForm/WishesStep1.tsx @@ -3,7 +3,6 @@ import ItemLink from './ItemLink'; import { LIMIT_TEXT } from '@/constant/limitText'; import { ChangeEvent, PropsWithChildren, useEffect, useState } from 'react'; import styled from 'styled-components'; -import UploadTypeToggleBtn from '@/components/Common/UploadTypeToggleBtn'; import { WishesDataInputType } from '@/types/wishesType'; import { UseFormReturn } from 'react-hook-form'; import Input from '@/components/Common/Input/Input'; diff --git a/pages/_app.tsx b/pages/_app.tsx index 8179408..e3ba5f5 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -9,7 +9,6 @@ import theme from '@/styles/theme'; import { useEffect } from 'react'; import Script from 'next/script'; import Loading from '@/components/Common/Loading/Loading'; -import Footer from '@/components/footer'; declare global { interface Window {