File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed
feature/settings/src/main/kotlin/com/ninecraft/booket/feature/settings Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -225,11 +225,6 @@ private fun SettingsScreenPreview() {
225225 ReedTheme {
226226 Settings (
227227 state = SettingsUiState (
228- isLoading = false ,
229- isLogoutDialogVisible = false ,
230- isWithdrawBottomSheetVisible = false ,
231- isWithdrawConfirmed = false ,
232- sideEffect = null ,
233228 eventSink = {},
234229 ),
235230 )
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import com.slack.circuit.runtime.CircuitUiEvent
44import com.slack.circuit.runtime.CircuitUiState
55
66data class SettingsUiState (
7- val isLoading : Boolean ,
8- val isLogoutDialogVisible : Boolean ,
9- val isWithdrawBottomSheetVisible : Boolean ,
10- val isWithdrawConfirmed : Boolean ,
7+ val isLoading : Boolean = false ,
8+ val isLogoutDialogVisible : Boolean = false ,
9+ val isWithdrawBottomSheetVisible : Boolean = false ,
10+ val isWithdrawConfirmed : Boolean = false ,
1111 val sideEffect : SettingsSideEffect ? = null ,
1212 val eventSink : (SettingsUiEvent ) -> Unit ,
1313) : CircuitUiState
You can’t perform that action at this time.
0 commit comments