Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ojj1123 committed Oct 24, 2024
1 parent 68175c4 commit fa327a4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/molecules/cards/ProfileCommentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ProfileCommentCard({
setIsCommentModal(false);
setIsEdit(false);
};
console.log(rightComponent);

return (
<>
<Flex py={3} align="center">
Expand Down
4 changes: 2 additions & 2 deletions components/organisms/drawer/BottomFlexDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function BottomFlexDrawer({
setDrawerHeight(currentHeightRef.current); // 스와이프가 임계값보다 짧으면 원래 높이로 복원
}
};
console.log(25, isHideBottom ? "true" : "false", zIndex);

return (
<>
{isOverlay && <ScreenOverlay zIndex={zIndex} onClick={() => setIsModal(false)} />}
Expand Down Expand Up @@ -153,7 +153,7 @@ const Layout = styled.div<{
border-top-right-radius: 20px;
background-color: white;
z-index: ${(props) => props.zindex || (props.ishide==="true" ? 700 : 500)};
z-index: ${(props) => props.zindex || (props.ishide === "true" ? 700 : 500)};
padding: 0 20px;
padding-bottom: ${(props) => props.isdrawerup === "false" && "12px"};
padding-top: 0;
Expand Down
2 changes: 1 addition & 1 deletion libs/study/setStudyToThumbnailInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const setStudyToThumbnailInfo = (
imageCache?: Map<string, string>,
): StudyThumbnailCardProps[] => {
if (!studyData) return [];
console.log(12312313, location);

// 카드 데이터 생성
const cardColData: StudyThumbnailCardProps[] = studyData.map((data, idx) => {
const placeInfo = convertMergePlaceToPlace(data.place);
Expand Down
1 change: 0 additions & 1 deletion pageTemplates/studyPage/StudyPageDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ function StudyPageDrawer({
const router = useRouter();
const searchParams = useSearchParams();
const newSearchParams = new URLSearchParams(searchParams);
console.log(24, isDrawerUp);
const [thumbnailCardInfoArr, setThumbnailCardinfoArr] = useState<StudyThumbnailCardProps[]>();
const [selectOption, setSelectOption] = useState<SelectOption>("인원순");

Expand Down
3 changes: 1 addition & 2 deletions pages/study/[id]/[date]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export default function Page() {
studyVoteData,
convertLocationLangTo(locationParam, "kr"),
);
console.log(5, studyVoteData, mergeParticipations);

const mergeParticipation = mergeParticipations?.find(
(participation) => participation.place._id === id,
Expand All @@ -72,7 +71,7 @@ export default function Page() {
const members = mergeParticipation?.members;

const absences = studyVoteData?.participations.find((par) => par.place._id === id)?.absences;
console.log(1234, mergeParticipation);

return (
<>
{mergeParticipation && (
Expand Down

0 comments on commit fa327a4

Please sign in to comment.