From aaca5477ae42aa4a1bb04f23a900fec86f5d7815 Mon Sep 17 00:00:00 2001 From: Juan Gallicchio Date: Tue, 27 Aug 2024 17:35:56 +0200 Subject: [PATCH] lint fix --- src/pages/Community/Item.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/Community/Item.tsx b/src/pages/Community/Item.tsx index 97b55df63..02a479150 100644 --- a/src/pages/Community/Item.tsx +++ b/src/pages/Community/Item.tsx @@ -56,7 +56,8 @@ export const Item = ({ item, actionable }: ItemProps) => { }; const Thumbnail = useMemo( - () => lazy(() => import(`../../config/validators/thumbnails/${thumbnail}.tsx`)), + () => + lazy(() => import(`../../config/validators/thumbnails/${thumbnail}.tsx`)), [] );