File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
frontend/src/app/jobs/[id] Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
// src/app/jobs/[id]/page.tsx
2
2
3
3
import { getJobById } from "@/app/jobs/actions" ;
4
- import { FilterProvider } from "@/context/filter/filter-provider" ;
5
4
import { notFound } from "next/navigation" ;
6
5
import { Job } from "@/types/job" ;
7
6
import JobDetailsWrapper from "@/components/jobs/job-details-wrapper" ;
@@ -23,12 +22,10 @@ export default async function JobDetailPage({ params }: PageProps) {
23
22
}
24
23
25
24
return (
26
- < FilterProvider >
27
- < div className = "h-screen max-w-4xl mx-auto overflow-hidden flex flex-col" >
28
- < div className = "overflow-y-auto h-[calc(100svh-120px)] lg:h-[calc(100svh-180px)]" >
29
- < JobDetailsWrapper job = { job } />
30
- </ div >
25
+ < div className = "h-screen max-w-4xl mx-auto overflow-hidden flex flex-col" >
26
+ < div className = "overflow-y-auto h-[calc(100svh-120px)] lg:h-[calc(100svh-180px)]" >
27
+ < JobDetailsWrapper job = { job } />
31
28
</ div >
32
- </ FilterProvider >
29
+ </ div >
33
30
) ;
34
31
}
You can’t perform that action at this time.
0 commit comments