Fix composable typo (#1120)

This commit is contained in:
David Perez
2024-03-11 11:16:57 -05:00
committed by GitHub
parent 0caa27142b
commit 655609306d

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,