Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-dewit committed May 4, 2022
1 parent e122e8b commit ebd0136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/timeline-state-resolver/src/conductor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ export class Conductor extends EventEmitter<ConductorEvents> {
if (this._datastore[key] !== newStore[key]) {
// it changed! let's sift through our dependencies to see if we need to do anything
Object.entries(this._deviceStates).forEach(([deviceId, states]) => {
if (states.find((state) => state.dependencies.find((deps) => deps === 'key'))) {
if (states.find((state) => state.dependencies.find((deps) => deps === key))) {
changed.push(deviceId)
}
})
Expand Down

0 comments on commit ebd0136

Please sign in to comment.