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 f7ab0aa commit ce43d96Copy full SHA for ce43d96
packages/app/src/app/overmind/namespaces/editor/actions.ts
@@ -121,6 +121,8 @@ export const sandboxChanged: AsyncAction<{ id: string }> = withLoadApp<{
121
}
122
123
state.editor.isLoading = false;
124
+
125
+ effects.chameleon.loadTour(state.user && state.user.id);
126
});
127
128
export const contentMounted: Action = ({ state, effects }) => {
@@ -136,8 +138,6 @@ export const contentMounted: Action = ({ state, effects }) => {
136
138
137
139
return null;
140
-
- effects.chameleon.loadTour(state.user && state.user.id);
141
};
142
143
export const resizingStarted: Action = ({ state }) => {
0 commit comments