fix: fixed atUri in meta props 6b8d058e
Steve · 2026-01-09 19:27 1 file(s) · +8 −2
packages/client/src/layouts/Base.astro +8 −2
11 11
}
12 12
13 13
const {
14 -
	meta: { title, description = siteConfig.description, ogImage, articleDate },
14 +
	meta: {
15 +
		title,
16 +
		description = siteConfig.description,
17 +
		ogImage,
18 +
		articleDate,
19 +
		atUri,
20 +
	},
15 21
} = Astro.props;
16 22
---
17 23
21 27
    <meta name="theme-color" content="#121113" />
22 28
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
23 29
		<!-- Google tag (gtag.js) -->
24 -
		<BaseHead title={title} description={description} ogImage={ogImage} articleDate={articleDate} />
30 +
		<BaseHead title={title} description={description} ogImage={ogImage} articleDate={articleDate} atUri={atUri} />
25 31
		<script defer src="https://cloud.umami.is/script.js" data-website-id="6951e531-a667-495e-b045-4f7dbe062446"></script>
26 32
	</head>
27 33
	<body>