diff --git a/apps/remix-ide/src/404.html b/apps/remix-ide/src/404.html index f0cefda8bb..28214dc776 100644 --- a/apps/remix-ide/src/404.html +++ b/apps/remix-ide/src/404.html @@ -7,9 +7,9 @@ \ No newline at end of file diff --git a/libs/remix-lib/src/query-params.ts b/libs/remix-lib/src/query-params.ts index 41374be3bf..be3d2a876f 100644 --- a/libs/remix-lib/src/query-params.ts +++ b/libs/remix-lib/src/query-params.ts @@ -18,7 +18,7 @@ export class QueryParams { get () { let qs - if (window.location.hash.startsWith('#/#')) qs = window.location.hash.substr(3) + if (window.location.hash.startsWith('#/')) qs = window.location.hash.substr(2) else qs = window.location.hash.substr(1) if (window.location.search.length > 0) {