File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
authenticator/src/main/java/com/amplifyframework/ui/authenticator/ui Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ fun PasswordResetConfirm(
4949 .padding(horizontal = 16 .dp)
5050 ) {
5151 headerContent(state)
52- deliveryNoticeContent(details = state.deliveryDetails)
52+ deliveryNoticeContent(state.deliveryDetails)
5353 AuthenticatorForm (
5454 state = state.form
5555 )
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import androidx.compose.foundation.text.KeyboardActions
3030import androidx.compose.foundation.text.KeyboardOptions
3131import androidx.compose.material3.Divider
3232import androidx.compose.material3.ExperimentalMaterial3Api
33+ import androidx.compose.material3.HorizontalDivider
3334import androidx.compose.material3.Icon
3435import androidx.compose.material3.IconButton
3536import androidx.compose.material3.ModalBottomSheet
@@ -249,6 +250,6 @@ private fun LazyItemScope.RegionItem(
249250 }
250251
251252 if (showDivider) {
252- Divider (modifier = Modifier .padding(horizontal = 16 .dp))
253+ HorizontalDivider (modifier = Modifier .padding(horizontal = 16 .dp))
253254 }
254255}
You can’t perform that action at this time.
0 commit comments