gemi 0.30.2 → 0.30.4

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.
@@ -32049,9 +32049,9 @@ const Head = ({
32049
32049
  return /* @__PURE__ */ jsxs("head", { children: [
32050
32050
  /* @__PURE__ */ jsx("meta", { charSet }),
32051
32051
  /* @__PURE__ */ jsx("meta", { name: "viewport", content: "width=device-width, initial-scale=1" }),
32052
- /* @__PURE__ */ jsx("title", { children: meta.title }),
32053
- meta.description && /* @__PURE__ */ jsx("meta", { name: "description", content: meta.description }),
32054
- meta.openGraph && /* @__PURE__ */ jsx(OpenGraph, { ...meta.openGraph }),
32052
+ /* @__PURE__ */ jsx("title", { children: meta == null ? void 0 : meta.title }),
32053
+ (meta == null ? void 0 : meta.description) && /* @__PURE__ */ jsx("meta", { name: "description", content: meta.description }),
32054
+ (meta == null ? void 0 : meta.openGraph) && /* @__PURE__ */ jsx(OpenGraph, { ...meta.openGraph }),
32055
32055
  children
32056
32056
  ] });
32057
32057
  };