From 065e558e564e1ecc5848fc3780b16aa72a5441ae Mon Sep 17 00:00:00 2001 From: Tony <56505654+purr-purr@users.noreply.github.com> Date: Mon, 11 Mar 2024 19:35:22 +0000 Subject: [PATCH] fix: posters path --- src/modules/common/components/CursorPoster/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/common/components/CursorPoster/index.tsx b/src/modules/common/components/CursorPoster/index.tsx index c6ebf20..ceaeddf 100644 --- a/src/modules/common/components/CursorPoster/index.tsx +++ b/src/modules/common/components/CursorPoster/index.tsx @@ -16,7 +16,7 @@ const CursorPoster: FC<{ currentPoster: string; style: CSSProperties }> = ({ const getPosterPath = (path: string) => { return ( path && - require(`src/modules/home/components/projects/assets/projectList_${path}.jpg`) + require(`src/modules/home/components/Projects/assets/projectList_${path}.jpg`) ); };