From ed7c76e6d7ff57784fe2f767da7fe3f7c77b8a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Galley?= Date: Wed, 16 Oct 2024 15:57:05 -0400 Subject: [PATCH] remove job location --- apps/web/src/components/Jobs/Job.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/components/Jobs/Job.tsx b/apps/web/src/components/Jobs/Job.tsx index 723eaa40385..fe6a34fa6a7 100644 --- a/apps/web/src/components/Jobs/Job.tsx +++ b/apps/web/src/components/Jobs/Job.tsx @@ -23,7 +23,7 @@ type JobProps = { }; export function Job({ job }: JobProps) { - const { id, title, location } = job; + const { id, title } = job; const href = useMemo( () => ({ @@ -43,7 +43,6 @@ export function Job({ job }: JobProps) {

{title}

- {location.name}