Skip to content

Commit

Permalink
✂️ edit : 임시 콘솔들 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
seondal committed Sep 3, 2024
1 parent 66ba170 commit e5baff4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/apis/config/privateApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const privateApi: CustomInstance = axios.create({
privateApi.interceptors.response.use(
(response) => response.data,
(error) => {
console.log(error);
const status = error.response?.status;
console.log('🚀 ~ status:', status);
if (status === ERROR_UNAUTHORIZED || status === ERROR_UNSUPPORTED_MEDIA_TYPE) {
Expand Down
1 change: 0 additions & 1 deletion src/components/Feed/Photo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface PhotoI {
export default function Photo({ data }: PhotoI) {
const { imageKey, source, bookmarkCheck, poseId, width, height } = data;
const [loaded, setLoaded] = useState(false);
console.log(width / height);

return (
<div className="relative mb-16 inline-block w-full rounded-8">
Expand Down

0 comments on commit e5baff4

Please sign in to comment.