Update all non-major dependencies (#2479)

* Update all non-major dependencies

* prettier fixes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Timo <toger5@hotmail.de>
This commit is contained in:
renovate[bot]
2024-07-17 10:07:26 +02:00
committed by GitHub
parent 486430d1f0
commit e79cded57f
6 changed files with 514 additions and 493 deletions

View File

@@ -53,7 +53,7 @@ function useMuteState(
): MuteState {
const [enabled, setEnabled] = useReactiveState<boolean | undefined>(
(prev) =>
device.available.length > 0 ? prev ?? enabledByDefault() : undefined,
device.available.length > 0 ? (prev ?? enabledByDefault()) : undefined,
[device],
);
return useMemo(