Skip to content

Commit 491fa5a

Browse files
Merge branch 'vscodeeffect' of https://github.com/codesandbox/codesandbox-client into vscodeeffect
2 parents c2821d5 + 85b8dcb commit 491fa5a

File tree

3 files changed

+6
-6
lines changed
  • packages/app/src/app/overmind
  • standalone-packages/vscode-extensions/out/extensions/codesandbox-black-0.0.1

3 files changed

+6
-6
lines changed

packages/app/src/app/overmind/effects/live/clients.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ class CodeSandboxOTClient extends Client {
4747
this.onApplyOperation(operation);
4848
}
4949

50-
serverReconnect() {
51-
super.serverReconnect();
52-
}
53-
5450
serverAck() {
5551
super.serverAck();
5652
}
@@ -62,6 +58,10 @@ class CodeSandboxOTClient extends Client {
6258
applyServer(operation: any) {
6359
super.applyServer(operation);
6460
}
61+
62+
serverReconnect() {
63+
super.serverReconnect();
64+
}
6565
}
6666

6767
export default (

packages/app/src/app/overmind/namespaces/live/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export const liveMessageReceived: Operator<LiveMessage> = pipe(
9191
export const applyTransformation: Action<{
9292
operation: any;
9393
moduleShortid: string;
94-
}> = ({ state, effects }, { operation, moduleShortid }) => {
94+
}> = ({ effects }, { operation, moduleShortid }) => {
9595
effects.vscode.applyOperation(moduleShortid, operation);
9696
};
9797

standalone-packages/vscode-extensions/out/extensions/codesandbox-black-0.0.1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
"path": "./themes/codesandbox-black.json"
2121
}
2222
]
23-
},
23+
}
2424
}

0 commit comments

Comments
 (0)