Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
archey347 committed Jan 10, 2025
1 parent a463c01 commit 0a83f44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/sponsors/gallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Gallery, Image } from "react-grid-gallery";
import Whitecliff4x4 from "@/images/sponsors/whitecliff4x4.jpg";
import { useEffect } from "react";
import { ThumbnailImageProps } from "react-grid-gallery";
import NImage from "next/image";

export default function SponsorGallery() {
const images = [
Expand Down Expand Up @@ -61,7 +62,7 @@ import { ThumbnailImageProps } from "react-grid-gallery";

return (
<a href={url} target="_blank">
<img alt={alt} src={src} title={title || ""} style={style} />
<NImage alt={alt} src={src} title={title || ""} style={style} />
</a>
);
};
Expand Down

0 comments on commit 0a83f44

Please sign in to comment.