From 00978bf99577a63fd34c75e47ce78791bac87cad Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Mon, 15 Dec 2025 16:03:10 -0300 Subject: [PATCH] fix(frontend): add use client directive to components using hooks --- frontend/src/components/footer.tsx | 2 ++ frontend/src/components/job-card.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/frontend/src/components/footer.tsx b/frontend/src/components/footer.tsx index 99c77c9..c196d9a 100644 --- a/frontend/src/components/footer.tsx +++ b/frontend/src/components/footer.tsx @@ -1,3 +1,5 @@ +"use client" + import Link from "next/link" import { useTranslation } from "@/lib/i18n" diff --git a/frontend/src/components/job-card.tsx b/frontend/src/components/job-card.tsx index ff7c1cb..b062550 100644 --- a/frontend/src/components/job-card.tsx +++ b/frontend/src/components/job-card.tsx @@ -1,3 +1,5 @@ +"use client" + import type { Job } from "@/lib/types"; import { Card,