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()