Skip to content

Commit

Permalink
Fix a crash with migration list screen
Browse files Browse the repository at this point in the history
  • Loading branch information
jobobby04 committed Nov 8, 2024
1 parent f0b621d commit e5a6d1b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue
import androidx.compose.ui.platform.LocalContext
import cafe.adriel.voyager.core.model.rememberScreenModel
import cafe.adriel.voyager.navigator.LocalNavigator
Expand All @@ -29,8 +27,7 @@ import tachiyomi.i18n.sy.SYMR

class MigrationListScreen(private val config: MigrationProcedureConfig) : Screen() {

@delegate:Transient
var newSelectedItem by mutableStateOf<Pair<Long, Long>?>(null)
var newSelectedItem: Pair<Long, Long>? = null

@Composable
override fun Content() {
Expand Down

0 comments on commit e5a6d1b

Please sign in to comment.