@skippr/live-agent-sdk 0.69.0 → 0.70.0
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/esm/lib-exports.js +2 -1
- package/dist/skippr-sdk.js +124 -124
- package/package.json +1 -1
package/dist/esm/lib-exports.js
CHANGED
|
@@ -3057,6 +3057,7 @@ function MinimizedBubble({
|
|
|
3057
3057
|
isAuthenticated,
|
|
3058
3058
|
displayModules,
|
|
3059
3059
|
hasResolvedModules,
|
|
3060
|
+
isLoadingModules,
|
|
3060
3061
|
selectModule,
|
|
3061
3062
|
expandPanel,
|
|
3062
3063
|
commitLauncherDrop
|
|
@@ -3116,7 +3117,7 @@ function MinimizedBubble({
|
|
|
3116
3117
|
}, [goalsHidden]);
|
|
3117
3118
|
const visibleGoals = goalsUnmounted ? [] : matchedGoals;
|
|
3118
3119
|
const launchDefaultSession = () => {
|
|
3119
|
-
if (wasDraggedRef.current || isStarting)
|
|
3120
|
+
if (wasDraggedRef.current || isStarting || isLoadingModules)
|
|
3120
3121
|
return;
|
|
3121
3122
|
const target = isAuthenticated ? alwaysOnModule ?? onboardingModule ?? pillCandidates[0] : null;
|
|
3122
3123
|
if (target) {
|