Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 219a97e3 authored by cketti's avatar cketti
Browse files

Always hide "Next" button in server settings validation screen

parent 7e097fab
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -33,12 +33,12 @@ internal fun AccountValidationMainScreen(
        },
        bottomBar = {
            WizardNavigationBar(
                nextButtonText = stringResource(id = R.string.account_setup_button_next),
                nextButtonText = "",
                backButtonText = stringResource(id = R.string.account_setup_button_back),
                onNextClick = { dispatch(Event.OnNextClicked) },
                onNextClick = {},
                onBackClick = { dispatch(Event.OnBackClicked) },
                state = WizardNavigationBarState(
                    showNext = state.value.isSuccess,
                    showNext = false,
                ),
            )
        },