diff --git a/launcher/modplatform/modrinth/ModrinthPackManifest.cpp b/launcher/modplatform/modrinth/ModrinthPackManifest.cpp
index 014d990f0..7846e966d 100644
--- a/launcher/modplatform/modrinth/ModrinthPackManifest.cpp
+++ b/launcher/modplatform/modrinth/ModrinthPackManifest.cpp
@@ -94,7 +94,7 @@ void loadIndexedInfo(Modpack& pack, QJsonObject& obj)
pack.extra.donate.append(donate);
}
-
+
pack.extra.status = Json::ensureString(obj, "status");
pack.extraInfoLoaded = true;
diff --git a/launcher/ui/pages/modplatform/ResourcePage.cpp b/launcher/ui/pages/modplatform/ResourcePage.cpp
index 42139a8a5..d8e8a652c 100644
--- a/launcher/ui/pages/modplatform/ResourcePage.cpp
+++ b/launcher/ui/pages/modplatform/ResourcePage.cpp
@@ -201,7 +201,8 @@ void ResourcePage::updateUi()
if (current_pack->extraDataLoaded) {
if (current_pack->extraData.status == "archived") {
- text += "
" + tr("This project has been archived. It will not receive any further updates unless the author decides to unarchive the project.");
+ text += "
" + tr("This project has been archived. It will not receive any further updates unless the author decides "
+ "to unarchive the project.");
}
if (!current_pack->extraData.donate.isEmpty()) {
diff --git a/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp b/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp
index 79ebfefd6..fffa21940 100644
--- a/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp
+++ b/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp
@@ -268,7 +268,8 @@ void ModrinthPage::updateUI()
if (current.extraInfoLoaded) {
if (current.extra.status == "archived") {
- text += "
" + tr("This project has been archived. It will not receive any further updates unless the author decides to unarchive the project.");
+ text += "
" + tr("This project has been archived. It will not receive any further updates unless the author decides "
+ "to unarchive the project.");
}
if (!current.extra.donate.isEmpty()) {