Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions desktop/src/features/dkg-memory/ui/MemoryOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ export function MemoryOverview({
})}
</div>
<p className="text-2xs text-muted-foreground">
{sortedDecisions.length} loaded decisions · {topicCount} named
topics · {(data.contributors ?? []).length} people &amp; agents
{sortedDecisions.length} decisions · {topicCount} named topics ·{" "}
{(data.contributors ?? []).length} people &amp; agents
</p>
{swmReconciliation && (
<p
Expand Down
6 changes: 4 additions & 2 deletions desktop/tests/e2e/dkg-memory-fallback.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ test("contributor chip opens that participant's Traces lens", async ({
await page.addInitScript((cg) => {
window.localStorage.setItem("dkg-memory-cg-override", cg);
}, CG);
const pubkey = "c9f4f94b87273745cc34b9d8b15847b27afb90eb9bb7c8a4363703821a0";
const pubkey =
"c9f4f94b87273745cc34b9d8b15847b27afb90eb9bb7c8a4363703821a000000";
await page.route("http://127.0.0.1:9295/**", (route) => {
const url = route.request().url();
if (url.includes("/api/channel-memory")) {
Expand Down Expand Up @@ -360,7 +361,8 @@ test("named subgraph lens queries the provider and keeps Graph available", async
test("entity accounting: bounded sub-graph counts report typed assignments", async ({
page,
}) => {
const pubkey = "c9f4f94b87273745cc34b9d8b15847b27afb90eb9bb7c8a4363703821a0";
const pubkey =
"c9f4f94b87273745cc34b9d8b15847b27afb90eb9bb7c8a4363703821a000000";
await page.addInitScript((cg) => {
window.localStorage.setItem("dkg-memory-cg-override", cg);
}, CG);
Expand Down
Loading