Skip to content

Commit

Permalink
chore : !연산자 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloWook committed Dec 6, 2024
1 parent d33a7d8 commit 2370cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Common/ItemSlider/ItemSlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const ItemSlider = ({
>
<img
className="object-cover min-w-full rounded min-h-[120px]"
src={getImagePath(item.src!)}
src={item.src && getImagePath(item.src)}
alt={item.name}
style={{ width: width, height: height }}
/>
Expand Down

0 comments on commit 2370cb7

Please sign in to comment.