diff --git a/src/components/common/InformationBar/InformationBar.jsx b/src/components/common/InformationBar/InformationBar.jsx index cfab435..8955eb9 100644 --- a/src/components/common/InformationBar/InformationBar.jsx +++ b/src/components/common/InformationBar/InformationBar.jsx @@ -23,7 +23,6 @@ function InformationBar({ useEffect(() => { if (window.Kakao && !window.Kakao.isInitialized()) { window.Kakao.init("0e75199aafea8afc76aa6dd724c8f4bd"); // ๐Ÿ”ฅ ์—ฌ๊ธฐ์— JavaScript ํ‚ค ์ž…๋ ฅ - console.log("Kakao SDK Initialized"); } }, []); diff --git a/src/components/common/Input/Input/Input.jsx b/src/components/common/Input/Input/Input.jsx index 0d0e007..a75c4ad 100644 --- a/src/components/common/Input/Input/Input.jsx +++ b/src/components/common/Input/Input/Input.jsx @@ -68,14 +68,12 @@ function Input() { .postRecipients(requestBody) .then((response) => { const newId = response.data.id; - console.log(response); navigate(`/post/${newId}`); }) .catch((error) => { console.error("ID ์ƒ์„ฑ ์‹คํŒจ:", error.response?.data || error.message); }); } - console.log("cardContent ๊ฐ’.:", cardContent); return ( diff --git a/src/components/common/Input/Picker/ImgPicker.jsx b/src/components/common/Input/Picker/ImgPicker.jsx index c68a415..bf0f466 100644 --- a/src/components/common/Input/Picker/ImgPicker.jsx +++ b/src/components/common/Input/Picker/ImgPicker.jsx @@ -73,7 +73,6 @@ const ImgPicker = ({ onSelect }) => { if (response.data && response.data.imageUrls) { setImages(response.data.imageUrls); } else { - console.log("์ด๋ฏธ์ง€๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค."); } } catch (error) { console.error("์ด๋ฏธ์ง€๋ฅผ ๋ถˆ๋Ÿฌ์˜ค๋Š” ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ:", error); diff --git a/src/components/common/Input/ProfileInput/ProfileInput.jsx b/src/components/common/Input/ProfileInput/ProfileInput.jsx index 8aa7e8f..eeefac9 100644 --- a/src/components/common/Input/ProfileInput/ProfileInput.jsx +++ b/src/components/common/Input/ProfileInput/ProfileInput.jsx @@ -68,15 +68,11 @@ function ProfileInput() { font: selectedFont || "Noto Sans", }; - console.log("์„œ๋ฒ„๋กœ ์ „์†กํ•  ๋ฐ์ดํ„ฐ:", requestBody); - - console.log("ํฐํŠธ ๊ฐ’:", selectedFont); // ์ด ๋ถ€๋ถ„์œผ๋กœ ํ™•์ธ try { const response = await recipientsService.postRecipientsMessages( numericId, // numericId๋ฅผ ์ „๋‹ฌ requestBody ); - console.log("์„œ๋ฒ„ ์‘๋‹ต:", response); navigate(`/post/${numericId}`); // ์ˆซ์žํ˜• id๋กœ ์ด๋™ } catch (error) { @@ -84,9 +80,6 @@ function ProfileInput() { } }; - console.log(selectedRecipient); - console.log(name); - return ( diff --git a/src/components/common/Input/ProfileInput/ProfileInputChoiceImage.jsx b/src/components/common/Input/ProfileInput/ProfileInputChoiceImage.jsx index 6051ce5..ff030f2 100644 --- a/src/components/common/Input/ProfileInput/ProfileInputChoiceImage.jsx +++ b/src/components/common/Input/ProfileInput/ProfileInputChoiceImage.jsx @@ -103,7 +103,6 @@ function ProfileInputChoiceImage({ onImageSelect }) { try { const response = await profileImageService.getProfileImageService(); setImages(response.data.imageUrls); - console.log(response); } catch (error) { console.error("์ด๋ฏธ์ง€๋ฅผ ๋ถˆ๋Ÿฌ์˜ค๋Š” ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ:", error); } @@ -114,7 +113,6 @@ function ProfileInputChoiceImage({ onImageSelect }) { const handleImageChange = (image) => { setSelectedImg(image); onImageSelect(image); - console.log("์„ ํƒ๋œ ํ”„๋กœํ•„ ์ด๋ฏธ์ง€:", image); }; return ( diff --git a/src/components/common/Input/ProfileInput/ProfileInputRelationChoice.jsx b/src/components/common/Input/ProfileInput/ProfileInputRelationChoice.jsx index 3511e6d..e78d669 100644 --- a/src/components/common/Input/ProfileInput/ProfileInputRelationChoice.jsx +++ b/src/components/common/Input/ProfileInput/ProfileInputRelationChoice.jsx @@ -24,10 +24,6 @@ function ProfileInputRelationChoice({ onSelectRelation }) { onSelectRelation(option); }; - useEffect(() => { - console.log("์„ ํƒ๋œ ๊ด€๊ณ„:", selectedOption); - }, [selectedOption]); - return ( ์ƒ๋Œ€์™€์˜ ๊ด€๊ณ„ diff --git a/src/components/common/Input/ProfileInput/ProfileInputText.jsx b/src/components/common/Input/ProfileInput/ProfileInputText.jsx index 36bc530..bc23eac 100644 --- a/src/components/common/Input/ProfileInput/ProfileInputText.jsx +++ b/src/components/common/Input/ProfileInput/ProfileInputText.jsx @@ -45,7 +45,6 @@ function ProfileInputText({ value, onChange, onError, onFontSelect }) { "๋‚˜๋ˆ”๋ช…์กฐ", "๋‚˜๋ˆ”์†๊ธ€์”จ ์†ํŽธ์ง€์ฒด", ]; - console.log(hasError); const [selectedOption, setSelectedOption] = useState("Noto Sans"); const handleOptionSelect = (option) => { diff --git a/src/components/domain/rollingpaper/Card/CardWrite.jsx b/src/components/domain/rollingpaper/Card/CardWrite.jsx index 06298cb..cfc78ab 100644 --- a/src/components/domain/rollingpaper/Card/CardWrite.jsx +++ b/src/components/domain/rollingpaper/Card/CardWrite.jsx @@ -195,7 +195,6 @@ const CardWrite = ({ message, onDelete }) => { const textAlign = "left"; const fontFamily = message.font || "Noto Sans KR"; - console.log(fontFamily) return ( <> diff --git a/src/components/domain/rollingpaper/Card/CreateAtCardList.jsx b/src/components/domain/rollingpaper/Card/CreateAtCardList.jsx index a50aa23..5a21f49 100644 --- a/src/components/domain/rollingpaper/Card/CreateAtCardList.jsx +++ b/src/components/domain/rollingpaper/Card/CreateAtCardList.jsx @@ -302,7 +302,6 @@ function CreateAtCardList() { }; }); - console.log(updatedRecipients); setSelectedRecipients(updatedRecipients); } catch (error) { console.error("๋ฐ›๋Š” ์‚ฌ๋žŒ ๋ฐ์ดํ„ฐ๋ฅผ ๊ฐ€์ ธ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค:", error); diff --git a/src/components/domain/rollingpaper/Card/PopularCardList.jsx b/src/components/domain/rollingpaper/Card/PopularCardList.jsx index 1b598de..67a5686 100644 --- a/src/components/domain/rollingpaper/Card/PopularCardList.jsx +++ b/src/components/domain/rollingpaper/Card/PopularCardList.jsx @@ -304,7 +304,6 @@ function PopularCardList() { }; }); - console.log(updatedRecipients); setSelectedRecipients(updatedRecipients); } catch (error) { console.error("๋ฐ›๋Š” ์‚ฌ๋žŒ ๋ฐ์ดํ„ฐ๋ฅผ ๊ฐ€์ ธ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค:", error);