diff --git a/README.md b/README.md index ecf88dd..ffa739c 100644 --- a/README.md +++ b/README.md @@ -482,7 +482,7 @@ class HomeDestination( onNavigateToCreateItem: () -> Unit, onNavigateToUpdateItem: (String) -> Unit, onNavigateToSettings: () -> Unit, -) : SampleDestination() { +) : ViceDestination() { override val view: HomeView = { state, onIntent -> HomeView(state, onIntent) } override val compositor = HomeCompositor( @@ -490,6 +490,8 @@ class HomeDestination( onNavigateToUpdateItem, onNavigateToSettings, ) + + override val effects = ViceEffects.None } ```