diff --git a/src/components/RequestCard/index.tsx b/src/components/RequestCard/index.tsx index 95b2bfaf..effac30e 100644 --- a/src/components/RequestCard/index.tsx +++ b/src/components/RequestCard/index.tsx @@ -5,7 +5,6 @@ import Tooltip from '@app/components/Common/Tooltip'; import RequestModal from '@app/components/RequestModal'; import StatusBadge from '@app/components/StatusBadge'; import useDeepLinks from '@app/hooks/useDeepLinks'; -import useSettings from '@app/hooks/useSettings'; import { Permission, useUser } from '@app/hooks/useUser'; import globalMessages from '@app/i18n/globalMessages'; import defineMessages from '@app/utils/defineMessages'; @@ -219,7 +218,6 @@ interface RequestCardProps { } const RequestCard = ({ request, onTitleData }: RequestCardProps) => { - const settings = useSettings(); const { ref, inView } = useInView({ triggerOnce: true, }); @@ -402,14 +400,7 @@ const RequestCard = ({ request, onTitleData }: RequestCardProps) => {