Skip to content

Commit f30580f

Browse files
committed
Fix build after upgrades
1 parent 4cc575b commit f30580f

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

core/ui/src/main/java/com/shifthackz/aisdv1/core/ui/MviComponent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import androidx.compose.runtime.Composable
55
import androidx.compose.runtime.LaunchedEffect
66
import androidx.compose.runtime.getValue
77
import androidx.compose.ui.graphics.Color
8-
import androidx.compose.ui.platform.LocalLifecycleOwner
98
import androidx.lifecycle.Lifecycle
9+
import androidx.lifecycle.compose.LocalLifecycleOwner
1010
import androidx.lifecycle.compose.collectAsStateWithLifecycle
1111
import com.google.accompanist.systemuicontroller.rememberSystemUiController
1212
import com.shifthackz.android.core.mvi.MviComponent

docs/supporters.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,14 @@
2525
"currency": "USD",
2626
"type": "bmc",
2727
"message": "I don't have much money, but wanted to express my sincere thanks for SDAI. Thanks to you, I can keep creating art even though my illness has worsened. I can now access Automatic1111 remotely from the couch! It means so much to me, that I can keep on creating even though I can no longer sit at the desk to use my powerhouse machine. Now even my crappy tablet can do it, lol. Thank you so much! <3"
28+
},
29+
{
30+
"id": 3,
31+
"name": "Jacob",
32+
"date": "2024-09-02",
33+
"amount": "5.00",
34+
"currency": "USD",
35+
"type": "bmc",
36+
"message": ""
2837
}
2938
]

presentation/src/main/java/com/shifthackz/aisdv1/presentation/screen/onboarding/OnBoardingScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ private fun OnBoardingScreenContent(
193193
HorizontalPager(
194194
modifier = Modifier.fillMaxSize(),
195195
state = pagerState,
196-
beyondBoundsPageCount = OnBoardingPage.entries.size,
196+
beyondViewportPageCount = OnBoardingPage.entries.size,
197197
userScrollEnabled = true,
198198
) { index ->
199199
when (OnBoardingPage.entries[index]) {

0 commit comments

Comments
 (0)