Skip to content

Commit

Permalink
chore: 콘솔 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
a-honey committed Feb 23, 2024
1 parent 82d88f8 commit 0d1fa9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
7 changes: 3 additions & 4 deletions src/components/atoms/Lottie.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import React from 'react';
// import Lottie from 'lottie-react';
// import animationData from './../../assets/lottie.json';
import Lottie from 'lottie-react';
import animationData from './../../assets/lottie.json';

const LottieComponent = () => {
return (
// <Lottie animationData={animationData} style={{ width: 167, height: 156 }} />
<div>로딩중</div>
<Lottie animationData={animationData} style={{ width: 167, height: 156 }} />
);
};

Expand Down
2 changes: 0 additions & 2 deletions src/components/molecules/FridgeListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ const FridgeListItem: React.FC<FridgeListItemProps> = ({
putFridgeName.mutate({ name: newFridgeName.name });
};

console.log(isEditingFridgeName);
console.log(newFridgeName);
return (
<GrayBox
className="flex-row items-center justify-between h-[70px]"
Expand Down
1 change: 0 additions & 1 deletion src/components/organisms/IngredientAddModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const IngredientAddModal: React.FC<{
};

const handleSubmit: () => void = () => {
console.log({ ...reqBody });
postIngredient.mutate({
...reqBody,
location: isInFreezer ? 'FREEZING' : 'FREEZING',
Expand Down

0 comments on commit 0d1fa9d

Please sign in to comment.