remove unused fullpath

This commit is contained in:
Mads Rasmussen
2022-05-30 20:43:44 +02:00
parent 59d2386822
commit a41e03ecd1

View File

@@ -12,7 +12,6 @@ export interface UmbRoute {
export interface UmbRouteLocation {
pathname: string;
params: Record<string, any>;
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,
};
}