repomind 0.2.1 → 0.2.2
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -40903,7 +40903,8 @@ function SplitApp({
|
|
|
40903
40903
|
return;
|
|
40904
40904
|
}
|
|
40905
40905
|
if (authToken) {
|
|
40906
|
-
deps.apiPost("/split/confirm", { group }, authToken).catch(() => {
|
|
40906
|
+
deps.apiPost("/split/confirm", { group }, authToken).catch((err) => {
|
|
40907
|
+
console.error("[split-confirm] failed:", err.message ?? err);
|
|
40907
40908
|
});
|
|
40908
40909
|
}
|
|
40909
40910
|
setCommitProgress(i + 1);
|