diff --git a/ui-features/location-details/src/main/java/com/github/yuriisurzhykov/purs/location/details/LocationDetailsScreen.kt b/ui-features/location-details/src/main/java/com/github/yuriisurzhykov/purs/location/details/LocationDetailsScreen.kt index c3bf3a3..edf4556 100644 --- a/ui-features/location-details/src/main/java/com/github/yuriisurzhykov/purs/location/details/LocationDetailsScreen.kt +++ b/ui-features/location-details/src/main/java/com/github/yuriisurzhykov/purs/location/details/LocationDetailsScreen.kt @@ -77,7 +77,7 @@ internal fun LocationDetails( modifier: Modifier = Modifier ) { val state: State by viewModel.detailsResponse.collectAsStateWithLifecycle(lifecycleOwner = androidx.compose.ui.platform.LocalLifecycleOwner.current) - BackgroundImage(modifier = modifier.fillMaxSize()) + BackgroundImage(modifier = Modifier.fillMaxSize()) if (state != State.None) { Content(state = state, modifier = modifier.fillMaxSize()) }