diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index d2c2edb91..1c37eb513 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -77,7 +77,6 @@
"saveArea-tooltip": "Save Area",
"confirm-success": "Okay",
"cancel-save": "Don't save",
- "invalid-headline-text": "Invalid Edits",
"invalid-text": "The segments do not create a valid video. Either change or discard your edits if you wish to proceed. Contact an adminstrator for further help."
},
diff --git a/src/main/Save.tsx b/src/main/Save.tsx
index 927f02068..2c087352c 100644
--- a/src/main/Save.tsx
+++ b/src/main/Save.tsx
@@ -80,9 +80,14 @@ const Save: React.FC = () => {
} else {
return (
<>
-
- {validSegments ? t("save.info-text") : t("save.invalid-text")}
-
+ {validSegments ?
+ {t("save.info-text")}
+ :