This commit is contained in:
Hanusiak Piotr
2022-02-07 15:10:20 +01:00
parent e34a72c865
commit 330b6ea1c5
4 changed files with 12 additions and 14 deletions
+3 -3
View File
@@ -10,8 +10,8 @@ import { myCameraVisibilityStore } from "./MyCameraStoreVisibility";
import { peerStore } from "./PeerStore";
import { privacyShutdownStore } from "./PrivacyShutdownStore";
import { MediaStreamConstraintsError } from "./Errors/MediaStreamConstraintsError";
import { SoundMeter } from '../Phaser/Components/SoundMeter';
import { AudioContext } from 'standardized-audio-context';
import { SoundMeter } from "../Phaser/Components/SoundMeter";
import { AudioContext } from "standardized-audio-context";
/**
* A store that contains the camera state requested by the user (on or off).
@@ -577,7 +577,7 @@ export const localVolumeStore = readable<number | null>(null, (set) => {
return () => {
unsubscribe();
clearInterval(timeout);
}
};
});
/**