We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ac714 commit cd64ef7Copy full SHA for cd64ef7
packages/app/src/app/overmind/namespaces/live/internalActions.ts
@@ -3,6 +3,7 @@ import {
3
Module,
4
Sandbox,
5
} from '@codesandbox/common/lib/types';
6
+import { logBreadcrumb } from '@codesandbox/common/lib/utils/analytics/sentry';
7
import { Action, AsyncAction } from 'app/overmind';
8
import { json } from 'overmind';
9
@@ -102,6 +103,10 @@ export const initializeModuleState: Action<IModuleState> = (
102
103
if (!sandbox) {
104
return;
105
}
106
+ logBreadcrumb({
107
+ category: 'ot',
108
+ message: 'Applying new module state',
109
+ });
110
Object.keys(moduleState).forEach(moduleShortid => {
111
const moduleInfo = moduleState[moduleShortid];
112
0 commit comments