From a41e03ecd1dafb95c8b737c3d3dd910e3c42c67f Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 30 May 2022 20:43:44 +0200 Subject: [PATCH] remove unused fullpath --- src/Umbraco.Web.UI.Client/src/core/router/router.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/core/router/router.ts b/src/Umbraco.Web.UI.Client/src/core/router/router.ts index 5068b7aa65..cd1cbc2229 100644 --- a/src/Umbraco.Web.UI.Client/src/core/router/router.ts +++ b/src/Umbraco.Web.UI.Client/src/core/router/router.ts @@ -12,7 +12,6 @@ export interface UmbRoute { export interface UmbRouteLocation { pathname: string; params: Record; - fullPath: string; route: UmbRoute; } @@ -75,7 +74,6 @@ export class UmbRouter { } public push(pathname: string) { - history.pushState(null, '', pathname); this._navigate(pathname); } @@ -137,7 +135,6 @@ export class UmbRouter { location = { pathname: result.pathname.input, params: result.pathname.groups, - fullPath: result.pathname.input, route, }; }