Skip to content

Commit 7fb3fac

Browse files
committed
fix(ImageWithFallback): null 병합 연산자
1 parent b7ae0e7 commit 7fb3fac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/atoms/ImageWithFallback.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const ImageWithFallback = ({
2828

2929
return (
3030
<StyledImage
31-
src={imgSrc}
31+
src={imgSrc ?? "/"}
3232
{...props}
3333
alt={alt}
3434
isshouldhide={isShouldHide}

0 commit comments

Comments
 (0)