Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanshew committed Dec 5, 2024
1 parent 3fd7cde commit 86487f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -113,3 +113,7 @@ function JobCard(props: any) {
</div>
)
}

interface JobCardProps {
route: string;
}

0 comments on commit 86487f4

Please sign in to comment.