Skip to content

Commit bb08f75

Browse files
committed
Don't send live module data on save
1 parent db18cea commit bb08f75

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/app/src/app/store/modules/live/actions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,9 @@ function sendModuleInfo(
255255

256256
export function sendModuleSaved(context) {
257257
const { moduleShortid } = context.props;
258-
sendModuleInfo(context, 'module:saved', 'module', moduleShortid);
258+
sendModuleInfo(context, 'module:saved', 'module', moduleShortid, {
259+
sendModule: false,
260+
});
259261
}
260262

261263
export function sendModuleCreated(context) {

0 commit comments

Comments
 (0)