Skip to content

Commit

Permalink
chore: remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Feb 22, 2024
1 parent e1da476 commit 71e7564
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions packages/apps/client/src/stores/RootOutputStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,4 @@ export class OutputStore {
onDisconnected = action('onDisconnected', () => {
this.connected = false
})

setupUIOutputSubscriptions = action(() => {
this.reactions.push(
reaction(
() => this.connected,
async (connected) => {
if (!connected) return

await this.connection.viewPort.subscribeToViewPort('')
},
{
fireImmediately: true,
}
)
)

// this.connection.playlist.on('created', this.onPlaylistCreated)
// Note: updated and removed events are handled by the UIRundownEntry's themselves
})
}

0 comments on commit 71e7564

Please sign in to comment.