Skip to content

Commit 5f1ba57

Browse files
committed
chore: 불필요한 커밋 제거
1 parent 3a3a9b2 commit 5f1ba57

File tree

5 files changed

+2
-8
lines changed

5 files changed

+2
-8
lines changed

src/components/detail/Preview.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ const Preview = ({ id, lengthType }) => {
4444
// for Responsive design
4545
const totalRevealedPages = width >= 1280 ? 5 : width >= 768 ? 3 : 2;
4646

47-
console.log(`width: ${width}`);
48-
console.log(`lengthType: ${lengthType}`);
49-
console.log(`totalRevealedPages: ${totalRevealedPages}`);
50-
console.log(`totalPage: ${totalPage}`);
5147
useRequest(async () => {
5248
try {
5349
setIsLoading(true);

src/components/myPage/ScriptContent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const ScriptContent = ({
4545
const { widthConditions } = useWindowDimensions();
4646

4747
const navigate = useNavigate();
48-
console.log("items:", items);
48+
4949

5050
return (
5151
<div key={index} className="script-content ">

src/components/price/PriceTextsVertical.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const PriceTextsVertical = ({
66
script = true,
77
performance = true,
88
}) => {
9-
console.log(script);
9+
1010
return (
1111
<div className="price-texts-vertical">
1212
{script ? (

src/pages/auth/SignUpDefault.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ const SignUpDefault = () => {
5757
navigate("/signup/success");
5858
} catch (error) {
5959
alert(error.response.data.error);
60-
console.log(userInfo);
6160
} finally {
6261
setIsLoading(false);
6362
}

src/pages/work/Detail.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ const Detail = () => {
143143
},
144144
});
145145

146-
console.log(response.data);
147146
setScript({
148147
id: id || "", // 혹은 response.data.id 가 있다면 사용
149148
title: response.data.title,

0 commit comments

Comments
 (0)