public async void SubmitPressed()
        {
            Busy = true;
            try
            {
                BusyText = "Resending email...";
                var errors = await _authApi.ResendConfirmationAsync(EditingEmail);

                _errored = errors != null;

                if (!_errored)
                {
                    // This isn't an error lol but that's what I called the control.
                    OverlayControl = new AuthErrorsOverlayViewModel(this, "Confirmation email sent", new []
                    {
                        "A confirmation email has been sent to your email address."
                    });
                }
                else
                {
                    OverlayControl = new AuthErrorsOverlayViewModel(this, "Error", errors !);
                }
            }
            finally
            {
                Busy = false;
            }
        }