fix: use EmDashHead page prop correctly (matching official template)
Official template uses: <EmDashHead page={pageCtx} />
Not: <EmDashHead emdash={...} pageContext={...} />
Also removed Font component from imports (causes esbuild parse error)
and uses Google Fonts link tag instead.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2,3 +2,4 @@
|
||||
{"t":0,"agent":"a0f2988","agent_type":"Explore","event":"agent_start","parent_mode":"none"}
|
||||
{"t":0,"agent":"a0f2988","agent_type":"Explore","event":"agent_stop","success":true,"duration_ms":35179}
|
||||
{"t":0,"agent":"a338ed5","agent_type":"unknown","event":"agent_stop","success":true}
|
||||
{"t":0,"agent":"a03ceb2","agent_type":"unknown","event":"agent_stop","success":true}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"updatedAt": "2026-05-01T00:10:41.650Z",
|
||||
"updatedAt": "2026-05-01T04:04:54.735Z",
|
||||
"missions": [
|
||||
{
|
||||
"id": "session:33698839-2ad1-4412-9735-43676f5e6beb:none",
|
||||
@@ -7,7 +7,7 @@
|
||||
"name": "none",
|
||||
"objective": "Session mission",
|
||||
"createdAt": "2026-04-30T23:41:28.830Z",
|
||||
"updatedAt": "2026-05-01T00:10:41.650Z",
|
||||
"updatedAt": "2026-05-01T04:04:54.735Z",
|
||||
"status": "done",
|
||||
"workerCount": 1,
|
||||
"taskCounts": {
|
||||
@@ -27,7 +27,7 @@
|
||||
"currentStep": null,
|
||||
"latestUpdate": "completed",
|
||||
"completedSummary": null,
|
||||
"updatedAt": "2026-05-01T00:10:41.650Z"
|
||||
"updatedAt": "2026-05-01T04:04:54.735Z"
|
||||
}
|
||||
],
|
||||
"timeline": [
|
||||
@@ -54,6 +54,14 @@
|
||||
"agent": "Explore:a0f2988",
|
||||
"detail": "completed",
|
||||
"sourceKey": "session-stop:a338ed5c2f99a01ed"
|
||||
},
|
||||
{
|
||||
"id": "session-stop:a03ceb29df0d9439c:2026-05-01T04:04:54.735Z",
|
||||
"at": "2026-05-01T04:04:54.735Z",
|
||||
"kind": "completion",
|
||||
"agent": "Explore:a0f2988",
|
||||
"detail": "completed",
|
||||
"sourceKey": "session-stop:a03ceb29df0d9439c"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -13,5 +13,5 @@
|
||||
"total_spawned": 1,
|
||||
"total_completed": 1,
|
||||
"total_failed": 0,
|
||||
"last_updated": "2026-05-01T00:10:41.751Z"
|
||||
"last_updated": "2026-05-01T04:04:54.837Z"
|
||||
}
|
||||
@@ -45,7 +45,7 @@ const pageCtx = createPublicPageContext({
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
|
||||
{siteFavicon && <link rel="icon" href={siteFavicon} />}
|
||||
{description && <meta name="description" content={description} />}
|
||||
<EmDashHead emdash={Astro.locals.emdash} pageContext={pageCtx} />
|
||||
<EmDashHead page={pageCtx} />
|
||||
</head>
|
||||
<body>
|
||||
<header class="site-header">
|
||||
|
||||
Reference in New Issue
Block a user