Skip to content

Commit

Permalink
chore: remove unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarpl committed Feb 12, 2024
1 parent be201aa commit f327327
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ function observeUIRundown(rundown: UIRundown | null, clb: Lambda): Lambda {
const destructors: Lambda[] = []

destructors.push(
observe(rundown, 'name', (change) => {
observe(rundown, 'name', () => {
// console.log('rundown:name', change)

clb()
}),
observe(rundown, 'ready', (change) => {
observe(rundown, 'ready', () => {
// console.log('rundown:ready', change)

clb()
Expand Down Expand Up @@ -139,7 +139,7 @@ function observeUISegment(segment: UISegment | null, clb: Lambda): Lambda {
const destructors: Lambda[] = []

destructors.push(
observe(segment, (change) => {
observe(segment, () => {
// console.log('segment', change)

clb()
Expand Down

0 comments on commit f327327

Please sign in to comment.