jeawin-astro 3.0.74 → 3.0.75

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jeawin-astro",
3
- "version": "3.0.74",
3
+ "version": "3.0.75",
4
4
  "author": "chaegumi <chaegumi@qq.com>",
5
5
  "description": "",
6
6
  "license": "MIT",
@@ -27,11 +27,11 @@ const {base} = Astro.locals;
27
27
  <RemoteImage
28
28
  remote_url={sitelogo}
29
29
  alt={logo_title}
30
- class_str={`mx-auto md:m-0 max-h-25 w-auto ${logo_class}`}
30
+ class_str={`mx-auto md:m-0 max-h-25 w-auto ${logo_class || ''}`}
31
31
  is_lcp="1"
32
32
  />
33
33
  ) : (
34
- <DefaultImage class={`mx-auto md:m-0 max-h-25 w-auto ${logo_class}`} />
34
+ <DefaultImage class={`mx-auto md:m-0 max-h-25 w-auto ${logo_class || ''}`} />
35
35
  )}
36
36
  </Fragment>
37
37
  )}