From e204cd7f38bcc86ac09bbec2ff5d6adde3239520 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 21 Aug 2026 19:48:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84(frontend)=20increase=20the=20blur?= =?UTF-8?q?=20intensity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump the blur strength applied to virtual backgrounds so it obscures the background more effectively. Requested by users. --- CHANGELOG.md | 1 + .../rooms/livekit/components/effects/EffectsConfiguration.tsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2897d8e5..59cc7172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to - ⬆️(frontend) upgrade i18next and react-i18next patch versions - ⬆️(frontend) upgrade posthog-js from 1.395.0 to 1.404.1 - ⬆️(frontend) upgrade livekit-client and @livekit/components-react +- 💄(frontend) increase the blur intensity ### Fixed diff --git a/src/frontend/src/features/rooms/livekit/components/effects/EffectsConfiguration.tsx b/src/frontend/src/features/rooms/livekit/components/effects/EffectsConfiguration.tsx index 8c3fb335..1c2b486a 100644 --- a/src/frontend/src/features/rooms/livekit/components/effects/EffectsConfiguration.tsx +++ b/src/frontend/src/features/rooms/livekit/components/effects/EffectsConfiguration.tsx @@ -37,8 +37,8 @@ import { reportError } from '@/features/analytics/telemetry' enum BlurRadius { NONE = 0, - LIGHT = 5, - NORMAL = 10, + LIGHT = 10, + NORMAL = 20, } const isSupported = BackgroundProcessorFactory.isSupported()