From 62af94bb2d53040f0fb59a5ab7a9640f3eff018a Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 24 Jun 2022 15:10:50 -0400 Subject: [PATCH] Remove unnecessary any cast Signed-off-by: Sebastian Malton --- src/renderer/routes/navigate-to-route.injectable.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/renderer/routes/navigate-to-route.injectable.ts b/src/renderer/routes/navigate-to-route.injectable.ts index 8d2c91ac9a..4824ae8eee 100644 --- a/src/renderer/routes/navigate-to-route.injectable.ts +++ b/src/renderer/routes/navigate-to-route.injectable.ts @@ -22,8 +22,7 @@ const navigateToRouteInjectable = getInjectable({ return ((route: Route, options: NavigateToRouteOptions) => { const url = buildURL(route.path, { - // TODO: enhance typing - params: options?.parameters as any, + params: options?.parameters, query: options?.query, fragment: options?.fragment, });