@drawnagency/primitives 0.1.18 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drawnagency/primitives",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./package.json": "./package.json",
@@ -247,7 +247,7 @@ export default function EditorShell({
247
247
  await persistMediaManifest(loadedManifest);
248
248
  }
249
249
  setSavedSha(data.savedBranchSha ?? null);
250
- setMainSha(data.sha);
250
+ setMainSha(headSha);
251
251
  setChangedSectionIds(new Set(data.changedSectionIds ?? []));
252
252
  setMainIndex(data.mainIndex ?? data.index);
253
253
  }
@@ -881,7 +881,7 @@ function StatusText({
881
881
  buildState: "idle" | "building" | "ready" | "error";
882
882
  }) {
883
883
  if (publishAction === "saving") {
884
- return <span className="text-xs font-medium text-base-content/60">Saving...</span>;
884
+ return <span className="text-xs font-medium text-base-content/60">Saving changes...</span>;
885
885
  }
886
886
  if (publishAction === "publishing") {
887
887
  return <span className="text-xs font-medium text-base-content/60">Publishing...</span>;