Skip to content

Commit

Permalink
fix: image cannot in tag p
Browse files Browse the repository at this point in the history
  • Loading branch information
roby2409 committed Mar 29, 2024
1 parent 2457db2 commit b508626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/modules/ProjectList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const ProjectList: React.FC<ProjectListProps> = ({ project }) => {
const [isLoading, setLoading] = useState(true);

return (
<p>
<div>
{project.img ? (
<Image
loading="lazy"
Expand Down Expand Up @@ -43,7 +43,7 @@ const ProjectList: React.FC<ProjectListProps> = ({ project }) => {
{project.description}
</p>
</div>
</p>
</div>
);
};

Expand Down

0 comments on commit b508626

Please sign in to comment.