Skip to content

Commit

Permalink
fix: fixed typescript check
Browse files Browse the repository at this point in the history
  • Loading branch information
lukexor committed Jun 14, 2024
1 parent c3aa9c9 commit 8df89bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/resume/employment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type PositionInfo = {

export type EmploymentInfo = {
entity: string;
subentity: string;
subentity?: string;
location: string;
icon: string;
positions: PositionInfo[];
Expand Down Expand Up @@ -72,7 +72,7 @@ function EmploymentItem({ employment }: EmploymentItemProps) {
<div className={s.experienceEntity}>
<h4>
{entity}
<div className={s.subentity}>{subentity}</div>
{subentity ? <div className={s.subentity}>{subentity}</div> : null}
</h4>
<em>{location}</em>
</div>
Expand Down

0 comments on commit 8df89bf

Please sign in to comment.