1 files changed, 3 insertions, 1 deletions
diff --git a/src/RegisterPage.cpp b/src/RegisterPage.cpp
index 26a66ab7..44ad7a3d 100644
--- a/src/RegisterPage.cpp
+++ b/src/RegisterPage.cpp
@@ -405,7 +405,9 @@ void
RegisterPage::onRegisterButtonClicked()
{
if (!checkFields()) {
- showError(error_label_, tr("One or more fields have invalid inputs. Please correct those issues and try again."));
+ showError(error_label_,
+ tr("One or more fields have invalid inputs. Please correct those issues "
+ "and try again."));
return;
} else {
auto username = username_input_->text().toStdString();
|