diff --git a/src/app/page.tsx b/src/app/page.tsx index 67f715a..e964b99 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -87,7 +87,7 @@ export default function JobApplication() { ); } -function JobCard(props: any) { +function JobCard(props: JobCardProps) { const route = props.route; const jobData: JobDataType = JobData[route]; const position = 0; // FIX: replace this value @@ -113,3 +113,7 @@ function JobCard(props: any) { ) } + +interface JobCardProps { + route: string; +}