Skip to content

Commit

Permalink
fix: adjust img tag from next to vanilla
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentxuu committed Jan 27, 2025
1 parent 95e2ee1 commit e7dde40
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/Marathon/ApplyClosePopup.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useState, forwardRef, useImperativeHandle } from 'react';
import Image from "next/image";

const ApplyClosePopup = forwardRef((props, ref) => {
const [isVisible, setIsVisible] = useState(false);
Expand Down Expand Up @@ -35,7 +34,7 @@ const ApplyClosePopup = forwardRef((props, ref) => {
</div>

<div className="relative h-64 w-full">
<Image
<img
src="/assets/marathon-apply-close.png"
alt="Registration closed illustration"
fill
Expand Down

0 comments on commit e7dde40

Please sign in to comment.