diff --git a/.run/jvmApp.run.xml b/.run/jvmApp.run.xml
new file mode 100644
index 000000000..b75c3931c
--- /dev/null
+++ b/.run/jvmApp.run.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ false
+ false
+
+
+
\ No newline at end of file
diff --git a/feature/feed-impl/src/iosMain/kotlin/org/michaelbel/movies/feed/FeedViewModel.kt b/feature/feed-impl/src/iosMain/kotlin/org/michaelbel/movies/feed/FeedViewModel.kt
index fcb49df9c..97d3d65a5 100644
--- a/feature/feed-impl/src/iosMain/kotlin/org/michaelbel/movies/feed/FeedViewModel.kt
+++ b/feature/feed-impl/src/iosMain/kotlin/org/michaelbel/movies/feed/FeedViewModel.kt
@@ -38,5 +38,11 @@ class FeedViewModel(
val pagingDataFlow: StateFlow> = currentMovieList.flatMapLatest { movieList ->
flowOf(interactor.moviesResult(movieList.nameOrLocalList))
- }.catch { emptyList>() }.stateIn(scope = scope, started = SharingStarted.Lazily, initialValue = emptyList())
+ }.catch {
+ emptyList>()
+ }.stateIn(
+ scope = scope,
+ started = SharingStarted.Lazily,
+ initialValue = emptyList()
+ )
}
\ No newline at end of file