diff --git a/apps/remix-ide/src/app/components/preload.tsx b/apps/remix-ide/src/app/components/preload.tsx index a5dde9454d..2aaa336f35 100644 --- a/apps/remix-ide/src/app/components/preload.tsx +++ b/apps/remix-ide/src/app/components/preload.tsx @@ -23,6 +23,8 @@ export const Preload = () => { const testBlockStorage = useRef(window.location.hash.includes('e2e_testblock_storage=true') && window.location.host === '127.0.0.1:8080' && window.location.protocol === 'http:') function loadAppComponent() { + setError(true) + return import('../../app').then((AppComponent) => { const appComponent = new AppComponent.default() appComponent.run().then(() => { @@ -103,8 +105,22 @@ export const Preload = () => { Either change the settings in your browser or use a supported browser. : null} {error ? -
- An unknown error has occured loading the application. +
+ An unknown error has occurred while loading the application.

+ Doing a hard refresh might fix this issue:

+
+ Windows:

+ - Chrome: CTRL + F5 or CTRL + Reload Button

+ - Firefox: CTRL + SHIFT + R or CTRL + F5

+
+
+ MacOS:

+ - Chrome & FireFox: CMD + SHIFT + R or SHIFT + Reload Button

+
+
+ Linux:

+ - Chrome & FireFox: CTRL + SHIFT + R

+
: null} {showDownloader ?