Skip to content

Commit 932fefb

Browse files
committed
Fix types
1 parent 67eade2 commit 932fefb

File tree

1 file changed

+5
-1
lines changed
  • packages/app/src/app/overmind/effects/live

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,11 @@ export default new (class Live {
300300
return this.send('live:module_state', {});
301301
}
302302

303-
sendUserSelection(moduleShortid: string, liveUserId: string, selection: any) {
303+
sendUserSelection(
304+
moduleShortid: string | null,
305+
liveUserId: string,
306+
selection: any
307+
) {
304308
return this.send('user:selection', {
305309
liveUserId,
306310
moduleShortid,

0 commit comments

Comments
 (0)