From d60bd03749a02ff9166633903dca97e6df431600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Galley?= Date: Wed, 16 Oct 2024 16:07:41 -0400 Subject: [PATCH] remove job location (#1086) --- 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 723eaa4..fe6a34f 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}