Skip to content

Commit 9735b97

Browse files
fix png (#197)
1 parent 102d537 commit 9735b97

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Diff for: public/file.png renamed to public/images/file.png

File renamed without changes.

Diff for: src/components/jobs/JobCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const JobCard = ({ jobItem, type}: Props) => {
105105
<div className="flex flex-wrap !text-md">
106106
{jobItem.attachments.map((attachment, index) => (
107107
<div className="mx-2 my-2 cursor-pointer" key={index} onClick={() => handleOpenJD(attachment)}>
108-
<Image src={"/file.png"} alt="" width={150} height={150} />
108+
<Image src={"/portal/images/file.png"} alt="" width={150} height={150} />
109109
<div className="text-center text-blue-500 font-semibold cursor-pointer hover:text-blue-600">{`Attachment (${index})`}</div>
110110
</div>
111111
))}

0 commit comments

Comments
 (0)