gatsby-core-theme 1.6.4 → 1.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.6.5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v1.6.4...v1.6.5) (2021-11-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * manu item image width and height ([799be5b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/799be5b2e2e54a21e5d5beb00c9eec7a152d7560))
7
+
1
8
  ## [1.6.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v1.6.3...v1.6.4) (2021-11-22)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",
@@ -35,7 +35,9 @@ export default function Item({
35
35
  const isMobile = useIsMobile();
36
36
 
37
37
  const ItemImage = () =>
38
- item.image ? <img src={imagePrettyUrl(item.image)} alt={item.title} /> : null;
38
+ item.image ? (
39
+ <img width="20" height="20" src={imagePrettyUrl(item.image)} alt={item.title} />
40
+ ) : null;
39
41
 
40
42
  return (
41
43
  <ConditionalWrapper