From e12fe024a9c837dc88569f80f3f75ead85bdfbde Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Fri, 19 Apr 2024 23:47:45 +0100 Subject: fix: Use next/image for serving bookmark images --- .../dashboard/preview/LinkContentSection.tsx | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'apps/web/components/dashboard/preview/LinkContentSection.tsx') diff --git a/apps/web/components/dashboard/preview/LinkContentSection.tsx b/apps/web/components/dashboard/preview/LinkContentSection.tsx index ff08c661..6c51864f 100644 --- a/apps/web/components/dashboard/preview/LinkContentSection.tsx +++ b/apps/web/components/dashboard/preview/LinkContentSection.tsx @@ -1,4 +1,5 @@ import { useState } from "react"; +import Image from "next/image"; import { Select, SelectContent, @@ -12,8 +13,16 @@ import { ScrollArea } from "@radix-ui/react-scroll-area"; import { ZBookmark, ZBookmarkedLink } from "@hoarder/shared/types/bookmarks"; function ScreenshotSection({ link }: { link: ZBookmarkedLink }) { - // eslint-disable-next-line @next/next/no-img-element - return screenshot; + return ( +
+ screenshot +
+ ); } function CachedContentSection({ link }: { link: ZBookmarkedLink }) { @@ -32,7 +41,7 @@ function CachedContentSection({ link }: { link: ZBookmarkedLink }) { /> ); } - return content; + return {content}; } export default function LinkContentSection({ @@ -54,7 +63,7 @@ export default function LinkContentSection({ } return ( -
+
- {content} + {content}
); } -- cgit v1.2.3-70-g09d2