diff --git a/app/phone-calls/components/phone-calls-list.tsx b/app/phone-calls/components/phone-calls-list.tsx index 244c22f..493f2c4 100644 --- a/app/phone-calls/components/phone-calls-list.tsx +++ b/app/phone-calls/components/phone-calls-list.tsx @@ -1,12 +1,12 @@ import { useEffect } from "react"; -import { HiPhoneMissedCall, HiPhoneOutgoing } from "react-icons/hi"; +import { HiPhoneMissedCall, HiPhoneIncoming, HiPhoneOutgoing } from "react-icons/hi"; import clsx from "clsx"; -import { Direction } from "../../../db"; -import PhoneInitLoader from "../../core/components/phone-init-loader"; +import { Direction, CallStatus } from "db"; +import PhoneInitLoader from "app/core/components/phone-init-loader"; import EmptyCalls from "../components/empty-calls"; import usePhoneCalls from "../hooks/use-phone-calls"; -import { formatRelativeDate } from "../../core/helpers/date-formatter"; +import { formatRelativeDate } from "app/core/helpers/date-formatter"; export default function PhoneCallsList() { const [phoneCalls, query] = usePhoneCalls(); @@ -30,7 +30,8 @@ export default function PhoneCallsList() {