diff --git a/frontend/src/components/job-card.tsx b/frontend/src/components/job-card.tsx index 267d698..74104cc 100644 --- a/frontend/src/components/job-card.tsx +++ b/frontend/src/components/job-card.tsx @@ -46,6 +46,7 @@ interface JobCardProps { export function JobCard({ job, isApplied, applicationStatus }: JobCardProps) { const { t } = useTranslation(); const { user } = useAuth(); + const { notify } = useNotify(); const handleShare = (platform: string) => { const url = typeof window !== "undefined" ? `${window.location.origin}/jobs/${job.id}` : `https://local.gohorsejobs.com/jobs/${job.id}`; const text = `Confira esta vaga: ${job.title} na ${job.company}`;