Switch global var to the store for easier debugging

This commit is contained in:
Travis Ralston 2021-04-27 23:04:49 -06:00
parent c4d85c457b
commit c2bcdae8a9
3 changed files with 4 additions and 4 deletions

View file

@ -78,3 +78,5 @@ export class VoiceRecordingStore extends AsyncStoreWithClient<IState> {
return this.updateState({recording: null});
}
}
window.mxVoiceRecordingStore = VoiceRecordingStore.instance;