fix: use refName (camelCase from API) in CommitList

Author: Aaron Steven White
Commit 71c9b0e8dc65602aabd193c3422104702835524f
Parent: dd1c0cf8b5
Structural diff unavailable

These commits were pushed via plain git push, so no pre-parsed schemas are available. Install git-remote-cospan and re-push via panproto:// to see scope-level changes, breaking change detection, and semantic diffs.

brew install panproto/tap/git-remote-cospan
2 files changed +4 -1
@@ -26,7 +26,7 @@
2626 				<div class="min-w-0 flex-1">
2727 					<div class="flex items-center gap-2">
2828 						<span class="rounded bg-surface-2 px-1.5 py-0.5 font-mono text-xs text-accent">
29-							{(update.ref ?? '').replace('refs/heads/', '') || 'unknown'}
29+							{(update.refName ?? '').replace('refs/heads/', '') || 'unknown'}
3030 						</span>
3131 						<code class="font-mono text-xs text-text-secondary">
3232 							{truncateHash(update.newTarget)}
@@ -6,6 +6,9 @@
66   "target": "dev.cospan.vcs.refUpdate.view",
77   "steps": [
88     {
9+      "rename_field": { "old": "ref", "new": "refName" }
10+    },
11+    {
912       "remove_field": "repo"
1013     },
1114     {
cospan · schematic version control on atproto built on AT Protocol