@beastmode-develeap/beastmode 0.1.277 → 0.1.279
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/web/board.html +11 -2
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/web/board.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260516-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260516-150632-e7b201e";</script>
|
|
19
19
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
20
20
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
21
21
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
@@ -8667,7 +8667,16 @@ function ProjectsPage({ selectedProject, onProjectChange }) {
|
|
|
8667
8667
|
setNewPath('');
|
|
8668
8668
|
setGithubUrl('');
|
|
8669
8669
|
setCloneTarget('');
|
|
8670
|
-
|
|
8670
|
+
// For standard/full tier: do NOT show an intermediate toast before the
|
|
8671
|
+
// analyze call. The analyze API returns immediately (async job) so the
|
|
8672
|
+
// delay is negligible, but showing 'Project added successfully' first
|
|
8673
|
+
// causes the verifier (and real users) to read the wrong message if
|
|
8674
|
+
// they look before the API responds. Only show the final accurate message.
|
|
8675
|
+
if (isGithub) {
|
|
8676
|
+
setSuccess(`Cloned and added: ${registeredPath}`);
|
|
8677
|
+
} else if (onboardingTier !== 'standard' && onboardingTier !== 'full') {
|
|
8678
|
+
setSuccess('Project added successfully');
|
|
8679
|
+
}
|
|
8671
8680
|
|
|
8672
8681
|
if (onboardingTier === 'standard' || onboardingTier === 'full') {
|
|
8673
8682
|
try {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e7b201eb029ee43d5dece9e157756c0107c23da0
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260516-
|
|
1
|
+
20260516-150632-e7b201e
|