diff --git a/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/HomeView.kt b/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/HomeView.kt index aca132f56a..d08aba7d97 100644 --- a/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/HomeView.kt +++ b/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/HomeView.kt @@ -182,10 +182,15 @@ private fun HomeScaffold( displayFilters = roomListState.displayFilters && state.currentHomeNavigationBarItem == HomeNavigationBarItem.Chats, filtersState = roomListState.filtersState, canReportBug = state.canReportBug, - modifier = Modifier.hazeEffect( - state = hazeState, - style = HazeMaterials.thick(), - ) + modifier = if (state.isSpaceFeatureEnabled) { + Modifier.hazeEffect( + state = hazeState, + style = HazeMaterials.thick(), + ) + } else { + Modifier + .background(ElementTheme.colors.bgCanvasDefault) + } ) }, bottomBar = {