Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Abh1noob committed Mar 13, 2024
1 parent aca8403 commit 77f8160
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const TimelineComponent = (props: { count: number }) => {
key={index}
>
<Image
src={img1}
src={img1 as HTMLImageElement}
alt="completed"
height={50}
width={50}
Expand All @@ -48,7 +48,7 @@ const TimelineComponent = (props: { count: number }) => {
key={index}
>
<Image
src={img2}
src={img2 as HTMLImageElement}
alt="half"
height={50}
width={50}
Expand All @@ -66,7 +66,7 @@ const TimelineComponent = (props: { count: number }) => {
key={index}
>
<Image
src={img3}
src={img3 as HTMLImageElement}
alt="none"
height={50}
width={50}
Expand Down

0 comments on commit 77f8160

Please sign in to comment.