Skip to content

Commit

Permalink
Fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed Jun 3, 2020
1 parent 6787316 commit 0a10a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/assets/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ const Logo = (props: Props): JSX.Element => {
}

const sizes = generateSizes({
baseWidth: resolvedLogoProps.thumbnails.small.width,
baseHeight: resolvedLogoProps.thumbnails.small.height,
baseWidth: resolvedLogoProps?.thumbnails?.small?.width,
baseHeight: resolvedLogoProps?.thumbnails?.small?.height,
sizesMultipliers,
});

Expand Down

0 comments on commit 0a10a8e

Please sign in to comment.