@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
|
@@ -247,7 +247,7 @@ export default function EditorShell({
|
|
|
247
247
|
await persistMediaManifest(loadedManifest);
|
|
248
248
|
}
|
|
249
249
|
setSavedSha(data.savedBranchSha ?? null);
|
|
250
|
-
setMainSha(
|
|
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>;
|