Skip to content

Commit

Permalink
Merge pull request #12 from nathanshew/update-pagetsx
Browse files Browse the repository at this point in the history
Update page.tsx
  • Loading branch information
nathanshew authored Dec 5, 2024
2 parents 3fd7cde + 86487f4 commit 094664a
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 094664a

Please sign in to comment.