Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Aug 29, 2024
1 parent 8c9b91f commit 3d3f608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Wallet/VerticalSlide/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const VerticalSlide = (props: BaseBlockEntry) => {
<Grid container spacing="40px" justifyContent="flex-end">
<Grid item md={7} className={css.imageItem}>
<div className={css.imageWrapper}>
{isAsset(itemsImages[selectedIndex]) && itemsImages[selectedIndex].fields.file?.url ? (
{isAsset(itemsImages[selectedIndex]) && itemsImages[selectedIndex]?.fields.file?.url ? (
<img
src={itemsImages[selectedIndex].fields.file.url}
alt={itemsImages[selectedIndex].fields.title ?? ''}
Expand Down

0 comments on commit 3d3f608

Please sign in to comment.