From 10be0cf74aae21db93da7e73f68dc2b5f63e5d8e Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Mon, 11 Jul 2022 17:24:30 +0530 Subject: [PATCH] remove one hash --- apps/remix-ide/src/404.html | 4 ++-- libs/remix-lib/src/query-params.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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) {