Skip to content

Commit

Permalink
Chore: console 지우기
Browse files Browse the repository at this point in the history
  • Loading branch information
dongree committed Nov 6, 2023
1 parent 7166dc0 commit 7176146
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/me/employer/EmployeeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import Image from 'next/image';
import Link from 'next/link';
import basicProfileImg from '@/assets/profile.svg';
import { StackInfo } from '@/types/coverletter';
import { useEffect, useState } from 'react';
import { getInterviewResultByEmployeeId } from '@/service/employer';
import { useState } from 'react';
import fillHeart from '@/assets/icons/heart_fill.svg';
import emptyHeart from '@/assets/icons/heart_empty.svg';
import { likeEmployee, unlikeEmployee } from '@/service/like';
Expand Down Expand Up @@ -57,10 +56,6 @@ export default function EmployeeCard({ employee, type, onClickResult }: Props) {
});
};

useEffect(() => {
getInterviewResultByEmployeeId(697).then((res) => console.log(res));
}, []);

return (
isVisible && (
<div className="flex flex-col justify-between relative rounded-md shadow-md aspect-square">
Expand Down

0 comments on commit 7176146

Please sign in to comment.