Fix composable typo (#1120)

This commit is contained in:
David Perez 2024-03-11 11:16:57 -05:00 committed by Álison Fernandes
parent 0c64b7ad35
commit 2237d58ed5

View file

@ -122,7 +122,7 @@ fun ResetPasswordScreen(
)
},
) { innerPadding ->
ResetPasswordScreeContent(
ResetPasswordScreenContent(
state = state,
onCurrentPasswordInputChanged = remember(viewModel) {
{ viewModel.trySendAction(ResetPasswordAction.CurrentPasswordInputChanged(it)) }
@ -145,7 +145,7 @@ fun ResetPasswordScreen(
@Composable
@Suppress("LongMethod")
private fun ResetPasswordScreeContent(
private fun ResetPasswordScreenContent(
state: ResetPasswordState,
onCurrentPasswordInputChanged: (String) -> Unit,
onPasswordInputChanged: (String) -> Unit,