Enable strict lints

An attempt to fix https://github.com/vector-im/element-call/issues/1132
This commit is contained in:
Daniel Abramov
2023-07-11 16:02:58 +01:00
parent d86d3de95e
commit 0105162ffa
68 changed files with 970 additions and 724 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ const LocalVolume: React.FC<LocalVolumeProps> = ({
participant,
}: LocalVolumeProps) => {
const [localVolume, setLocalVolume] = useState<number>(
participant.getVolume()
participant.getVolume() ?? 0
);
const onLocalVolumeChanged = (event: ChangeEvent<HTMLInputElement>) => {