A calm place to write long-form, and publish it to the open social web. skypress.blog/
0

Configure Feed

Select the types of activity you want to include in your feed.

Add missing cid to PublicationForm test fixture

The Decision 0013 merge made `cid` a required field on the `Publication`
type (captured for the post's associatedRefs strongRef), but the
save-lifecycle test's `existing` fixture was not updated, so `npm run
check` was already failing on a clean trunk with TS2741.

Set a placeholder `cid` on the fixture to restore a green typecheck.
This is the literal value the test never inspects — it only needs the
shape to satisfy `Publication`.

+1
+1
src/components/PublicationForm.test.tsx
··· 104 104 // the button stuck on "Saving…" forever despite the PDS returning 200 (the reported bug). 105 105 const existing: Publication = { 106 106 uri: 'at://did:plc:alice/site.standard.publication/abc', 107 + cid: 'bafypub', 107 108 rkey: 'abc', 108 109 slug: 'blog', 109 110 name: 'Blog',