diff --git a/src/components/viewComponents/connectDisplay.vue b/src/components/viewComponents/connectDisplay.vue
index e54424ed..9df6ef7a 100644
--- a/src/components/viewComponents/connectDisplay.vue
+++ b/src/components/viewComponents/connectDisplay.vue
@@ -281,13 +281,14 @@ export default {
this.checkServerVersion();
} else {
// Error and no-connect if API v2 is missing
- var ApiVersionError = Error(`Your microscope is running an old API version.\
+ var ApiVersionError = `Your microscope is running an old API version.\
You must update your microscope software to continue.\
-
\n
- For API upgrades, burning the latest Raspbian-OpenFlexure is often easiest.\
-
\n
- Alternatively, you can run 'ofm upgrade' on your microscope.`);
- this.modalError(ApiVersionError);
+
+ For API upgrades, burning the latest Raspbian-OpenFlexure to your SD card is recommended.\
+
+ Downloads and instructions can be found here`;
+ this.modalDialog("API upgrade required", ApiVersionError);
+ this.$store.commit("setError");
}
})
.catch(error => {